breakhandler.java
来自「Libgist is an implementation of the Gene」· Java 代码 · 共 22 行
JAVA
22 行
// BreakHandler.java// Copyright (c) 1998, Regents of the University of California// $Header: /usr/local/devel/GiST/libgist/src/gui/BreakHandler.java,v 1.2 2000/03/15 00:23:57 mashah Exp $/* * BreakHandler: * * Breakpoint handler routine. Return value indicates to libgist how to carry on. */interface BreakHandler {int CONTINUE = 0;int STEP = 1; // stop at next break-worthy point in executionint NEXT = 2; // stop at next entry routine (insert, fetch, remove)int CANCEL = 3; // don't execute the entry routine that was just startedpublic intbreakHandler(BreakInfo info);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?