// @formatter:off /* * Unlicensed, generated by javafx.ftl */ package org.controlsfx.control; /** * {@link PrefixSelectionChoiceBox}建構器。 * * @author JarReflectionDataLoader-1.0.0 * @version controlsfx-8.40.12.jar * @param <Z> 要建構的物件型態(需繼承{@link PrefixSelectionChoiceBox}) * @param <B> 建構器本身的型態(需繼承{@link PrefixSelectionChoiceBoxMaker}) */ @javax.annotation.Generated("Generated by javafx.ftl") @SuppressWarnings("all") public class PrefixSelectionChoiceBoxMaker<T extends java.lang.Object, Z extends PrefixSelectionChoiceBox<T>, B extends PrefixSelectionChoiceBoxMaker<T, Z, B>> extends javafx.scene.control.ChoiceBoxMaker<T, Z, B> implements PrefixSelectionChoiceBoxMakerExt<T, Z, B> { @Override public void applyTo(Z instance) { super.applyTo(instance); } /** * 建構{@link PrefixSelectionChoiceBox}物件。 * * @return 新的{@link PrefixSelectionChoiceBox}物件實體 */ @Override @SuppressWarnings("unchecked") public PrefixSelectionChoiceBox<T> build() { PrefixSelectionChoiceBox<T> instance = new PrefixSelectionChoiceBox<T>(); this.applyTo((Z) instance); this.doAfterBuild((Z) instance); return instance; } }