Examples of Parameters


Examples of eu.planets_project.ifr.core.wee.api.workflow.generated.WorkflowConf.Services.Service.Parameters

      for(ServiceBean sb : sbs){
        Service service = new Service();
        service.setId(sb.getServiceId());
        service.setEndpoint(sb.getServiceEndpoint());
       
        Parameters parameters = new Parameters();
        //3. iterate over all parameters that have been created/altered
        for(ServiceParameter param : sb.getServiceParameters()){
          Param parameter = new Param();
          parameter.setName(param.getName());
          parameter.setValue(param.getValue());
          parameters.getParam().add(parameter);
        }
        if(parameters.getParam().size()>0){
          //there needs to be a Parameter element only if there's a param for being xsd compliant
          service.setParameters(parameters);
        }
       
        services.getService().add(service);
View Full Code Here

Examples of eu.planets_project.services.datatypes.Parameters

     *
     * Within this workflow we've decided to use as many parameters of those two as configured within the xml config,
     * but if one is not available (i.e. null) we still try to invoke the migration service (and use the default config of the service)
     */
    List<Parameter> parameterList = new ArrayList<Parameter>();
    Parameters parameters = new Parameters();
    /*As long as accepted Parameters for a level-one service type aren't
       *uniquely defined and named the following is not possible within a template.
       *--> use getAllPropertiesAsParameter instead - this may also contain parameters a certain service does not understand
       */
    /*
      Parameter pCompressionType = this.getServiceCallConfigs(this.migrate1).
        getPropertyAsParameter("compressionType");
      if(pCompressionType!=null){
        parameterList.add(pCompressionType);
      }
      Parameter pCompressionQuality = this.getServiceCallConfigs(this.migrate1).
      getPropertyAsParameter("compressionQuality");
      if(pCompressionQuality!=null){
        parameterList.add(pCompressionQuality);
      }*/
      parameterList = this.getServiceCallConfigs(this.migrate1).
        getAllPropertiesAsParameters();
     
      //finally set the parameters for the object
    parameters.setParameters(parameterList);
   
    /*
     * Now call the migration service
     */
    MigrateResult migrateResult = this.migrate1.migrate(digO, migrateFromURI, migrateToURI, parameters);
View Full Code Here

Examples of jsynoptic.plugins.java3d.AnimatorFactory.Parameters

        public String getDisplayClassName() {
            return "jsynoptic.plugins.java3d.panels.TextField$IntegerValue";
        }        
        @Override
        public Parameters getAnimatorParameters() {
            return new Parameters(SwitchAnimator.class, SwitchAnimator.SwitchData.class, SwitchAnimator.SELECTION);
        }
View Full Code Here

Examples of jsynoptic.plugins.java3d.AnimatorFactory.Parameters

        /* (non-Javadoc)
         * @see jsynoptic.plugins.java3d.edit.PropertyEdit#getAnimatorParameters()
         */
        @Override
        public Parameters getAnimatorParameters() {
            return new Parameters(Tuple3fAnimator.class, LightDirection.class, -1);
        }
View Full Code Here

Examples of jsynoptic.plugins.java3d.AnimatorFactory.Parameters

            type=Tuple3fData.DIFFUSE;
        }
        else if(_propertyName.equals(SpecularColor)){
            type=Tuple3fData.DIFFUSE;
        }
        return new Parameters(Tuple3fAnimator.class, ColorData.class, type);
    }
View Full Code Here

Examples of juzu.impl.bridge.Parameters

      }
    }
  }

  public Dispatch createDispatch(ControllerHandler<?> handler, Object[] args) {
    Parameters parameters = new Parameters();
    setArgs(args, parameters, handler);
    DispatchBridge spi = getBridge().createDispatch(handler.getPhase(), handler.getHandle(), parameters);
    return createDispatch(handler, spi);
  }
View Full Code Here

Examples of launch.Parameters

    private static final Logger logger = Logger.getLogger(ClassName.getCurrentClassName());

    public static void startProgram(String[] params) {
        try {
            GameLauncher.InitGame(new Parameters(params)).beginGame();
        } catch (Exception e) {
            logger.error(e.toString(), e);
        }
    }
View Full Code Here

Examples of lib.Parameters

            }

            map.put(name, value);
        }

        return new Parameters(map);
    }
View Full Code Here

Examples of net.jangaroo.jooc.Parameters

  ArrayList paramList = new ArrayList();

  public MethodDocImpl(MethodDeclaration declaration) {
    super (declaration);

    Parameters params = getMethodDeclaration().getParams();
    while (params!=null) {
      paramList.add(DocMap.getDoc(params.getHead()));
      params=params.getTail();
    }
  }
View Full Code Here

Examples of net.jangaroo.jooc.ast.Parameters

    JooSymbol sym = functionExpr.getSymbol();
    return classNameAsIde + "$" + sym.getLine() + "_" + sym.getColumn();
  }

  public void generateFunTailCode(FunctionExpr functionExpr) throws IOException {
    Parameters params = functionExpr.getParams();
    if (functionExpr.hasBody()) {
      if (functionExpr.isArgumentsUsedAsArray()) {
        functionExpr.getBody().addBlockStartCodeGenerator(ARGUMENT_TO_ARRAY_CODE_GENERATOR);
      }
      if (params != null) {
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.