< prev index next >

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

Print this page

        

@@ -251,10 +251,11 @@
      * user. {@link javafx.geometry.Orientation#HORIZONTAL} will result in
      * two (or more) nodes being placed next to each other horizontally, whilst
      * {@link javafx.geometry.Orientation#VERTICAL} will result in the nodes being
      * stacked vertically.</p>
      *
+     * @param value the orientation value
      */
     public final void setOrientation(Orientation value) {
         orientationProperty().set(value);
     };
 

@@ -266,10 +267,11 @@
         return orientation == null ? Orientation.HORIZONTAL : orientation.get();
     }
 
     /**
      * The orientation for the SplitPane.
+     * @return the orientation property for the SplitPane
      */
     public final ObjectProperty<Orientation> orientationProperty() {
         if (orientation == null) {
             orientation = new StyleableObjectProperty<Orientation>(Orientation.HORIZONTAL) {
                 @Override public void invalidated() {
< prev index next >