/* * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene.control; /** Builder class for javafx.scene.control.SplitPane @see javafx.scene.control.SplitPane @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 SplitPaneBuilder> extends javafx.scene.control.ControlBuilder implements javafx.util.Builder { protected SplitPaneBuilder() { } /** Creates a new instance of SplitPaneBuilder. */ @SuppressWarnings({"deprecation", "rawtypes", "unchecked"}) public static javafx.scene.control.SplitPaneBuilder create() { return new javafx.scene.control.SplitPaneBuilder(); } private int __set; public void applyTo(javafx.scene.control.SplitPane x) { super.applyTo(x); int set = __set; if ((set & (1 << 0)) != 0) x.setDividerPositions(this.dividerPositions); if ((set & (1 << 1)) != 0) x.getItems().addAll(this.items); if ((set & (1 << 2)) != 0) x.setOrientation(this.orientation); } private double[] dividerPositions; /** Set the value of the {@link javafx.scene.control.SplitPane#getDividerPositions() dividerPositions} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B dividerPositions(double[] x) { this.dividerPositions = x; __set |= 1 << 0; return (B) this; } private java.util.Collection items; /** Add the given items to the List of items in the {@link javafx.scene.control.SplitPane#getItems() items} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B items(java.util.Collection x) { this.items = x; __set |= 1 << 1; return (B) this; } /** Add the given items to the List of items in the {@link javafx.scene.control.SplitPane#getItems() items} property for the instance constructed by this builder. */ public B items(javafx.scene.Node... x) { return items(java.util.Arrays.asList(x)); } private javafx.geometry.Orientation orientation; /** Set the value of the {@link javafx.scene.control.SplitPane#getOrientation() orientation} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B orientation(javafx.geometry.Orientation x) { this.orientation = x; __set |= 1 << 2; return (B) this; } /** Make an instance of {@link javafx.scene.control.SplitPane} based on the properties set on this builder. */ public javafx.scene.control.SplitPane build() { javafx.scene.control.SplitPane x = new javafx.scene.control.SplitPane(); applyTo(x); return x; } }