소스 검색

update javadoc

Eren Yilmaz 6 년 전
부모
커밋
0d980a4437
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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();