< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/chart/Chart.java

Print this page

        

@@ -126,11 +126,11 @@
     public final void setTitle(String value) { title.set(value); }
     public final StringProperty titleProperty() { return title; }
 
     /**
      * The side of the chart where the title is displayed
-     * @default Side.TOP
+     * @defaultValue Side.TOP
      */
     private ObjectProperty<Side> titleSide = new StyleableObjectProperty<Side>(Side.TOP) {
         @Override protected void invalidated() {
             requestLayout();
         }

@@ -307,10 +307,11 @@
     }
 
     /**
      * This is used to check if any given animation should run. It returns true if animation is enabled and the node
      * is visible and in a scene.
+     * @return true if animation is enabled and the node is visible and in a scene
      */
     protected final boolean shouldAnimate(){
         return getAnimated() && NodeHelper.isTreeShowing(this);
     }
 
< prev index next >