Package org.ogce.schemas.gfac.beans.utils

Examples of org.ogce.schemas.gfac.beans.utils.ParamObject


  private ParamObject getParamAt(int row) {
    String name = StringUtil.trimSpaceInString(((JTextField) this.argsPanel.getSwingComponent().getComponent(row * 3 + 3)).getText());
    String desc = ((JTextField) this.argsPanel.getSwingComponent().getComponent(row * 3 + 4)).getText();
    String type = (String) ((JComboBox) this.argsPanel.getSwingComponent().getComponent(row * 3 + 5)).getSelectedItem();
    ParamObject paramObject = new ParamObject(name, type, row, desc);
    return paramObject;
  }
View Full Code Here


    serviceBean.setServiceDescription("This is for service xml test");

    MethodBean methodBean = new MethodBean();
    methodBean.setMethodName("GfacSchemaMethodTest");
    methodBean.setMethodDescription("This is for method xml test");
    methodBean.addInputParms(new ParamObject("count", "Integer", 0, "number"));
    methodBean.addInputParms(new ParamObject("name", "String", 1, "name"));
    methodBean.addOutputParms(new ParamObject("weight", "Float", 0, "desired weight"));
    serviceBean.setMethodBean(methodBean);
    serviceBean.setNotAfterInactiveMinutes(15);
  }
View Full Code Here

TOP

Related Classes of org.ogce.schemas.gfac.beans.utils.ParamObject

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.