/* * 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.ComboBoxBase @see javafx.scene.control.ComboBoxBase @deprecated This class is deprecated and will be removed in the next version * @since JavaFX 2.1 */ @javax.annotation.Generated("Generated by javafx.builder.processor.BuilderProcessor") @Deprecated public abstract class ComboBoxBaseBuilder> extends javafx.scene.control.ControlBuilder { protected ComboBoxBaseBuilder() { } private int __set; private void __set(int i) { __set |= 1 << i; } public void applyTo(javafx.scene.control.ComboBoxBase x) { super.applyTo(x); int set = __set; while (set != 0) { int i = Integer.numberOfTrailingZeros(set); set &= ~(1 << i); switch (i) { case 0: x.setEditable(this.editable); break; case 1: x.setOnAction(this.onAction); break; case 2: x.setOnHidden(this.onHidden); break; case 3: x.setOnHiding(this.onHiding); break; case 4: x.setOnShowing(this.onShowing); break; case 5: x.setOnShown(this.onShown); break; case 6: x.setPromptText(this.promptText); break; case 7: x.setValue(this.value); break; } } } private boolean editable; /** Set the value of the {@link javafx.scene.control.ComboBoxBase#isEditable() editable} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B editable(boolean x) { this.editable = x; __set(0); return (B) this; } private javafx.event.EventHandler onAction; /** Set the value of the {@link javafx.scene.control.ComboBoxBase#getOnAction() onAction} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B onAction(javafx.event.EventHandler x) { this.onAction = x; __set(1); return (B) this; } private javafx.event.EventHandler onHidden; /** Set the value of the {@link javafx.scene.control.ComboBoxBase#getOnHidden() onHidden} property for the instance constructed by this builder. * @since JavaFX 2.2 */ @SuppressWarnings("unchecked") public B onHidden(javafx.event.EventHandler x) { this.onHidden = x; __set(2); return (B) this; } private javafx.event.EventHandler onHiding; /** Set the value of the {@link javafx.scene.control.ComboBoxBase#getOnHiding() onHiding} property for the instance constructed by this builder. * @since JavaFX 2.2 */ @SuppressWarnings("unchecked") public B onHiding(javafx.event.EventHandler x) { this.onHiding = x; __set(3); return (B) this; } private javafx.event.EventHandler onShowing; /** Set the value of the {@link javafx.scene.control.ComboBoxBase#getOnShowing() onShowing} property for the instance constructed by this builder. * @since JavaFX 2.2 */ @SuppressWarnings("unchecked") public B onShowing(javafx.event.EventHandler x) { this.onShowing = x; __set(4); return (B) this; } private javafx.event.EventHandler onShown; /** Set the value of the {@link javafx.scene.control.ComboBoxBase#getOnShown() onShown} property for the instance constructed by this builder. * @since JavaFX 2.2 */ @SuppressWarnings("unchecked") public B onShown(javafx.event.EventHandler x) { this.onShown = x; __set(5); return (B) this; } private java.lang.String promptText; /** Set the value of the {@link javafx.scene.control.ComboBoxBase#getPromptText() promptText} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B promptText(java.lang.String x) { this.promptText = x; __set(6); return (B) this; } private T value; /** Set the value of the {@link javafx.scene.control.ComboBoxBase#getValue() value} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B value(T x) { this.value = x; __set(7); return (B) this; } }