/* * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene.layout; /** Builder class for javafx.scene.layout.Pane @see javafx.scene.layout.Pane @deprecated This class is deprecated and will be removed in the next version * @since JavaFX 2.0 */ @javax.annotation.Generated("Generated by javafx.builder.processor.BuilderProcessor") @Deprecated public class PaneBuilder> extends javafx.scene.layout.RegionBuilder { protected PaneBuilder() { } /** Creates a new instance of PaneBuilder. */ @SuppressWarnings({"deprecation", "rawtypes", "unchecked"}) public static javafx.scene.layout.PaneBuilder create() { return new javafx.scene.layout.PaneBuilder(); } private boolean __set; public void applyTo(javafx.scene.layout.Pane x) { super.applyTo(x); if (__set) x.getChildren().addAll(this.children); } private java.util.Collection children; /** Add the given items to the List of items in the {@link javafx.scene.layout.Pane#getChildren() children} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B children(java.util.Collection x) { this.children = x; __set = true; return (B) this; } /** Add the given items to the List of items in the {@link javafx.scene.layout.Pane#getChildren() children} property for the instance constructed by this builder. */ public B children(javafx.scene.Node... x) { return children(java.util.Arrays.asList(x)); } /** Make an instance of {@link javafx.scene.layout.Pane} based on the properties set on this builder. */ public javafx.scene.layout.Pane build() { javafx.scene.layout.Pane x = new javafx.scene.layout.Pane(); applyTo(x); return x; } }