< prev index next >

modules/javafx.controls/src/main/java/javafx/scene/control/TitledPane.java

Print this page

        

@@ -169,10 +169,11 @@
     };
 
     /**
      * Sets the expanded state of the TitledPane.  The default is {@code true}.
      *
+     * @param value a flag indicating the expanded state
      */
     public final void setExpanded(boolean value) { expandedProperty().set(value); }
 
     /*
      * Returns the expanded state of the TitledPane.

@@ -181,10 +182,11 @@
      */
     public final boolean isExpanded() { return expanded.get(); }
 
     /**
      * The expanded state of the TitledPane.
+     * @return the expanded state property
      */
     public final BooleanProperty expandedProperty() { return expanded; }
 
 
     // --- Animated

@@ -209,10 +211,11 @@
 
     /**
      * Specifies how the TitledPane should open and close.  The panel will be
      * animated out when this value is set to {@code true}.  The default is {@code true}.
      *
+     * @param value if flag indicating the animated state
      */
     public final void setAnimated(boolean value) { animatedProperty().set(value); }
 
     /**
      * Returns the animated state of the TitledPane.

@@ -221,10 +224,11 @@
      */
     public final boolean isAnimated() { return animated.get(); }
 
     /**
      *  The animated state of the TitledPane.
+     * @return the animated state property
      */
     public final BooleanProperty animatedProperty() { return animated; }
 
 
     // --- Collapsible

@@ -248,10 +252,11 @@
     };
 
     /**
      * Specifies if the TitledPane can be collapsed.  The default is {@code true}.
      *
+     * @param value a flag indicating the collapsible state
      */
     public final void setCollapsible(boolean value) { collapsibleProperty().set(value); }
 
     /**
      * Returns the collapsible state of the TitlePane.

@@ -260,10 +265,11 @@
      */
     public final boolean isCollapsible() { return collapsible.get(); }
 
     /**
      * The collapsible state of the TitledPane.
+     * @return the collapsible property
      */
     public final BooleanProperty collapsibleProperty() { return collapsible; }
 
     /***************************************************************************
      *                                                                         *
< prev index next >