Selaa lähdekoodia

update javadoc

Eren Yilmaz 6 vuotta sitten
vanhempi
commit
0d980a4437
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 1 1
      src/animation/PseudoCodeNode.java
  2. 1 1
      src/graph/LayeredGraphNode.java

+ 1 - 1
src/animation/PseudoCodeNode.java

@@ -92,7 +92,7 @@ public class PseudoCodeNode extends DefaultMutableTreeNode {
      * highlight this line of pseudocode.
      * should be called when the line is entered, as it triggers breakpoints
      * @param selected whether to select or deselect this line
-     * @return false iff a breakpoint was reached and the node was set to be selected.
+     * @return if the automatic execution should continue.
      */
     public CodeAction setSelected( boolean selected )
     {

+ 1 - 1
src/graph/LayeredGraphNode.java

@@ -184,7 +184,7 @@ public interface LayeredGraphNode {
   public boolean isDummyNode();
 
   /**
-   * unselects the subgraph of this node
+   * unselects recursively all contained nodes in all subgraphs of this node
    */
   public void unselectGraph();