Package org.uengine.ui

Examples of org.uengine.ui.XMLValueInput


    fd = getFieldDescriptor("VariableBindings");
    bindingVariablesInput = fd.getInputter();

    fd = getFieldDescriptor("DefinitionId");

    XMLValueInput inputter = new XMLValueInput("/processmanager/processDefinitionListXML.jsp?omitVersion=false&objectType=rule") {
      public void onValueChanged() {
        changeBindingArguments((String) getValue());
      }
    };
View Full Code Here


    setAttributeIgnoresError("Parameters",   "disabled", true);
   
   
    fd = getFieldDescriptor("TemplateFilePath");
    if(fd!=null)
      fd.setInputter(new XMLValueInput("/admin/processmanager/emailTemplateListXML.jsp"));


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

    fd = getFieldDescriptor("RoleBindings");
    bindingRolesInput = fd.getInputter();     
   
    fd = getFieldDescriptor("DefinitionId");
    XMLValueInput inputter = new XMLValueInput("/processmanager/processDefinitionListXML.jsp?omitVersion=false&objectType=process"){
      public void onValueChanged() {
        changeBindingArguments((String)getValue());
      }
    };
   
View Full Code Here

   
    type.removeFieldDescriptor("ValueMap");
    type.removeFieldDescriptor("FilePath");
   
    fd = type.getFieldDescriptor("FormDefId");
    XMLValueInput inputter = new XMLValueInput("/processmanager/processDefinitionListXML.jsp?omitVersion=false&objectType=form")/* {
      public void onValueChanged() {
        changeBindingArguments((String) getValue());
      }
    }*/;
   
    inputter.setEditable(true);
   
    fd.setValidators(new Validator[]{
      new Validator(){
     
        public String validate(Object data, Instance instance){
View Full Code Here

    FieldDescriptor fd;
   
    type.removeFieldDescriptor("FilePath");
   
    fd = type.getFieldDescriptor("DocumentDefId");
    XMLValueInput inputter = new XMLValueInput("/processmanager/processDefinitionListXML.jsp?omitVersion=false&objectType=excel");   
    fd.setValidators(new Validator[]{
      new Validator(){
     
        public String validate(Object data, Instance instance){
          if(org.uengine.util.UEngineUtil.isNotEmpty((String)data)) return null;
View Full Code Here

  public static void metaworksCallback_changeMetadata(Type type){
    FieldDescriptor fd;
   
    fd = type.getFieldDescriptor("TypeId");
    XMLValueInput inputter = new XMLValueInput("/processmanager/processDefinitionListXML.jsp?omitVersion=false&objectType=class")/* {
      public void onValueChanged() {
        changeBindingArguments((String) getValue());
      }
    }*/;

 
View Full Code Here

    RoleResolutionContext.metaworksCallback_changeMetadata(type); //call the super's one first

    FieldDescriptor fd;
   
    fd = type.getFieldDescriptor("RoleId")
    fd.setInputter(new XMLValueInput(URL_RoleListXML_JSP));
   
    fd = type.getFieldDescriptor("GroupId")
    fd.setInputter(new XMLValueInput(URL_GroupListXML_JSP));
  }
View Full Code Here

TOP

Related Classes of org.uengine.ui.XMLValueInput

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.