Package org.metaworks.inputter

Examples of org.metaworks.inputter.TextAreaInput


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

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


  public void initialize(final ProcessDesigner pd, Activity activity){
    super.initialize(pd, activity);
     
    FieldDescriptor fd = getFieldDescriptor("SqlStmt");
   
    TextAreaInput textAreaInput = new TextAreaInput();
    textAreaInput.setCols(45);
    textAreaInput.setRows(15);   
    fd.setInputter(textAreaInput);
    setFieldDisplayNames(SQLActivity.class);
   
    ((MultipleInput) getFieldDescriptor("Parameters").getInputter()).getTable().removeFieldDescriptor("Type");
    ((MultipleInput) getFieldDescriptor("SelectMappings").getInputter()).getTable().removeFieldDescriptor("Type");
View Full Code Here

 
  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

  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

      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

Related Classes of org.metaworks.inputter.TextAreaInput

Copyright © 2018 www.massapicom. 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.