📄 walkable.java
字号:
// $Id: Walkable.java,v 1.3 1999/09/27 20:01:29 deberg Exp $package java6035.tools.IR;/** * The Walkable interface specifies a set of methods that defines a web. */public interface Walkable { /** * Returns the name of the node */ public String getNodeName(); /** * Returns the number of neighbors from this node */ public int getNeighborCount(); /** * Returns a specific neighbor */ public Object getNeighbor(int index); /** * Returns a pretty print of the representation of the node. * * @param indent number of blank spaces to skip for a new line * @param recursive if true, recursively print children */ public String PPrint(int indent, boolean recursive);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -