/** @param in */ public InputForm(Input in) { super( "input", in.getIdentifier(), in.getName(), in.getType().getRepresentation().toString(), null, in.isLinked(), in.isMultipleValues()); }
/** @param input */ public Input(Input copy) { super( copy.getName(), copy.getIdentifier(), copy.getType(), copy.getRepresentation(), copy.isMultipleValues(), copy.getValidations()); this.id = copy.getId(); this.input = copy.input.getClone(); this.linked = copy.isLinked(); }