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