Package org.apache.airavata.xbaya.registrybrowser.model

Examples of org.apache.airavata.xbaya.registrybrowser.model.InputParameters


  @Override
  protected List<TreeNode> getChildren() {
    List<ServiceParameters> parameterTypeList=new ArrayList<ServiceParameters>();
    if (getServiceDescription().getType().getInputParametersArray().length>0){
      parameterTypeList.add(new InputParameters(getServiceDescription().getType().getInputParametersArray()));
    }
    if (getServiceDescription().getType().getOutputParametersArray().length>0){
      parameterTypeList.add(new OutputParameters(getServiceDescription().getType().getOutputParametersArray()));
    }
    return getTreeNodeList(parameterTypeList.toArray(), this);
View Full Code Here

TOP

Related Classes of org.apache.airavata.xbaya.registrybrowser.model.InputParameters

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.