/* * 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.cell; /** Builder class for javafx.scene.control.cell.TextFieldListCell @see javafx.scene.control.cell.TextFieldListCell @deprecated This class is deprecated and will be removed in the next version * @since JavaFX 2.2 */ @javax.annotation.Generated("Generated by javafx.builder.processor.BuilderProcessor") @Deprecated public class TextFieldListCellBuilder> extends javafx.scene.control.ListCellBuilder { protected TextFieldListCellBuilder() { } /** Creates a new instance of TextFieldListCellBuilder. */ @SuppressWarnings({"deprecation", "rawtypes", "unchecked"}) public static javafx.scene.control.cell.TextFieldListCellBuilder create() { return new javafx.scene.control.cell.TextFieldListCellBuilder(); } private boolean __set; public void applyTo(javafx.scene.control.cell.TextFieldListCell x) { super.applyTo(x); if (__set) x.setConverter(this.converter); } private javafx.util.StringConverter converter; /** Set the value of the {@link javafx.scene.control.cell.TextFieldListCell#getConverter() converter} property for the instance constructed by this builder. */ @SuppressWarnings("unchecked") public B converter(javafx.util.StringConverter x) { this.converter = x; __set = true; return (B) this; } /** Make an instance of {@link javafx.scene.control.cell.TextFieldListCell} based on the properties set on this builder. */ public javafx.scene.control.cell.TextFieldListCell build() { javafx.scene.control.cell.TextFieldListCell x = new javafx.scene.control.cell.TextFieldListCell(); applyTo(x); return x; } }