/* * 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.TitledPane @see javafx.scene.control.TitledPane @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 TitledPaneBuilder> extends javafx.scene.control.LabeledBuilder implements javafx.util.Builder { protected TitledPaneBuilder() { } /** Creates a new instance of TitledPaneBuilder. */ @SuppressWarnings({"deprecation", "rawtypes", "unchecked"}) public static javafx.scene.control.TitledPaneBuilder create() { return new javafx.scene.control.TitledPaneBuilder(); } private int __set; public void applyTo(javafx.scene.control.TitledPane x) { super.applyTo(x); int set = __set; if ((set & (1 << 0)) != 0) x.setAnimated(this.animated); if ((set & (1 << 1)) != 0) x.setCollapsible(this.collapsible); if ((set & (1 << 2)) != 0) x.setContent(this.content); if ((set & (1 << 3)) != 0) x.setExpanded(this.expanded); } private boolean animated; /** Set the value of the {@link javafx.scene.control.TitledPane#isAnimated() animated} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B animated(boolean x) { this.animated = x; __set |= 1 << 0; return (B) this; } private boolean collapsible; /** Set the value of the {@link javafx.scene.control.TitledPane#isCollapsible() collapsible} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B collapsible(boolean x) { this.collapsible = x; __set |= 1 << 1; return (B) this; } private javafx.scene.Node content; /** Set the value of the {@link javafx.scene.control.TitledPane#getContent() content} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B content(javafx.scene.Node x) { this.content = x; __set |= 1 << 2; return (B) this; } private boolean expanded; /** Set the value of the {@link javafx.scene.control.TitledPane#isExpanded() expanded} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B expanded(boolean x) { this.expanded = x; __set |= 1 << 3; return (B) this; } /** Make an instance of {@link javafx.scene.control.TitledPane} based on the properties set on this builder. */ public javafx.scene.control.TitledPane build() { javafx.scene.control.TitledPane x = new javafx.scene.control.TitledPane(); applyTo(x); return x; } }