فهرست منبع

some javadoc comment

Eren Yilmaz 6 سال پیش
والد
کامیت
d8df2cc40b
1فایلهای تغییر یافته به همراه9 افزوده شده و 2 حذف شده
  1. 9 2
      src/graph/LayeredGraphNode.java

+ 9 - 2
src/graph/LayeredGraphNode.java

@@ -24,9 +24,16 @@ public interface LayeredGraphNode {
    */
   public ElkNode getOriginalNode();
 
-
-  public void setMouseOver( boolean over );
+  /**
+   * setter for the field mouseOver
+   * @param mouseOver the new value
+   */
+  public void setMouseOver( boolean mouseOver );
   
+  /**
+   * getter for the field mouseOver
+   * @return current value of the field
+   */
   public boolean isMouseOver();
   
   /**