< prev index next >

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

Print this page

        

@@ -134,10 +134,11 @@
      * The items contained in the {@code ToolBar}. Typical use case for a
      * {@code ToolBar} suggest that the most common items to place within it
      * are {@link Button Buttons}, {@link ToggleButton ToggleButtons}, and  {@link Separator Separators},
      * but you are not restricted to just these, and can insert any {@link Node}.
      * The items added must not be null.
+     * @return the list of items
      */
     public final ObservableList<Node> getItems() { return items; }
 
     private final ObservableList<Node> items = FXCollections.<Node>observableArrayList();
 
< prev index next >