Examples of TextAreaInput


Examples of org.metaworks.inputter.TextAreaInput

 
  public void initialize(final ProcessDesigner pd, Activity activity){
    super.initialize(pd, activity);
     
    FieldDescriptor fd = getFieldDescriptor("Contents");
    fd.setInputter(new TextAreaInput());   

    setFieldDisplayNames(FileGenerateActivity.class);
  }
View Full Code Here

Examples of org.metaworks.inputter.TextAreaInput

  public static void metaworksCallback_changeMetadata(Type type){
    type.removeFieldDescriptor("AuthorId");
    type.removeFieldDescriptor("ChangeTime");
    type.removeFieldDescriptor("Version");
    type.setFieldOrder(new String[]{"AuthorName", "AuthorEmailAddress", "AuthorCompany", "ChangeDescription"});
    type.getFieldDescriptor("ChangeDescription").setInputter(new TextAreaInput(30,5));
  }
View Full Code Here

Examples of org.metaworks.inputter.TextAreaInput

      new Object[] {
          new Integer(OPERATION_SELECT),
          new Integer(OPERATION_OTHER)
        }
    ));
    type.getFieldDescriptor("SqlStatement").setInputter(new TextAreaInput(45, 15));
    type.setFieldOrder(new String[] { "SqlArguments", "ConnectionFactory", "Operation", "SqlStatement", "ResultSet" });
   
    // setting for SqlArguments
    Type parametersType = ((MultipleInput) type.getFieldDescriptor("SqlArguments").getInputter()).getTable();
    parametersType.removeFieldDescriptor("Type");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.