コード例 #1
0
ファイル: InputForm.java プロジェクト: vandersonmoura/athena
 /** @param in */
 public InputForm(Input in) {
   super(
       "input",
       in.getIdentifier(),
       in.getName(),
       in.getType().getRepresentation().toString(),
       null,
       in.isLinked(),
       in.isMultipleValues());
 }
コード例 #2
0
ファイル: Input.java プロジェクト: vandersonmoura/athena
 /** @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();
 }