< prev index next >

modules/javafx.graphics/src/main/java/javafx/scene/layout/VBox.java

Print this page
rev 10598 : 8185767: Fix broken links in Javadocs

@@ -58,13 +58,13 @@
  *     VBox vbox = new VBox(8); // spacing = 8
  *     vbox.getChildren().addAll(new Button("Cut"), new Button("Copy"), new Button("Paste"));
  * }</pre>
  *
  * VBox will resize children (if resizable) to their preferred heights and uses its
- * {@link #fillWidth} property to determine whether to resize their widths to
+ * {@link #fillWidthProperty() fillWidth} property to determine whether to resize their widths to
  * fill its own width or keep their widths to their preferred (fillWidth defaults to true).
- * The alignment of the content is controlled by the {@link #alignment} property,
+ * The alignment of the content is controlled by the {@link #alignmentProperty() alignment} property,
  * which defaults to Pos.TOP_LEFT.
  * <p>
  * If a vbox is resized larger than its preferred height, by default it will keep
  * children to their preferred heights, leaving the extra space unused.  If an
  * application wishes to have one or more children be allocated that extra space
< prev index next >