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