// @formatter:off /* * Unlicensed, generated by javafx.ftl */ package javafx.scene.web; /** * {@link PopupFeatures}建構器。 * * @author JarReflectionDataLoader-1.0.0 * @version jfxrt.jar * @param <Z> 要建構的物件型態(需繼承{@link PopupFeatures}) * @param <B> 建構器本身的型態(需繼承{@link PopupFeaturesMaker}) */ @javax.annotation.Generated("Generated by javafx.ftl") @SuppressWarnings("all") public class PopupFeaturesMaker<Z extends PopupFeatures, B extends PopupFeaturesMaker<Z, B>> extends jxtn.jfx.makers.AbstractMaker<Z, B> implements PopupFeaturesMakerExt<Z, B> { @Override public void applyTo(Z instance) { super.applyTo(instance); } /** * 建構{@link PopupFeatures}物件。 * * @return 新的{@link PopupFeatures}物件實體 */ @SuppressWarnings("unchecked") public PopupFeatures build(boolean arg0, boolean arg1, boolean arg2, boolean arg3) { PopupFeatures instance = new PopupFeatures(arg0, arg1, arg2, arg3); this.applyTo((Z) instance); this.doAfterBuild((Z) instance); return instance; } }