This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / IR / Tree / Walkable.java
diff --git a/Robust/src/IR/Tree/Walkable.java b/Robust/src/IR/Tree/Walkable.java
deleted file mode 100644 (file)
index e15061c..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-package IR.Tree;
-
-/**
- * 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);
-}
-