Examples of addInputParms()


Examples of org.ogce.schemas.gfac.beans.MethodBean.addInputParms()

      methodBean.setMethodName(StringUtil.trimSpaceInString(this.methodNameTextField.getText()));
      methodBean.setMethodDescription(this.methodDescTextField.getText());

      // input arguments setup
      for (ParamObject paraObject : this.inputArguments) {
        methodBean.addInputParms(paraObject);
      }

      // output arguments setup
      for (ParamObject paraObject : this.outputArguments) {
        methodBean.addOutputParms(paraObject);
View Full Code Here

Examples of org.ogce.schemas.gfac.beans.MethodBean.addInputParms()

    InputParameterType[] inputparams = method.getInputParameterArray();
    for (int index = 0; index < inputparams.length; index++) {

      InputParameterType inputParameterType = inputparams[index];
      methodBean.addInputParms(new ParamObject(inputParameterType
          .getParameterName(), inputParameterType.getParameterType()
          .toString(), index, inputParameterType
          .getParameterDescription()));

    }
View Full Code Here

Examples of org.ogce.schemas.gfac.beans.MethodBean.addInputParms()

    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

Examples of org.ogce.schemas.gfac.beans.MethodBean.addInputParms()

    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
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.