Examples of Parameter


Examples of eu.scape_project.planning.model.Parameter

            actionDefinition.setUrl(serviceInfo.getUrl());
            actionDefinition.setInfo(serviceInfo.getInfo());

            for (Port p : wf.getInputPorts()) {
                if (p.isParameterPort()) {
                    actionDefinition.getParams().add(new Parameter(p.getName(), ""));
                }
            }

            String uniqueName = plan.getAlternativesDefinition().createUniqueName(actionDefinition.getShortname());
            Alternative a = Alternative.createAlternative(uniqueName, actionDefinition);
View Full Code Here

Examples of fr.soleil.comete.bean.datarecorder.model.utils.Parameter

        int iNbLabels = parameterVector.size();
        // for each item of the vector, create the label with the name specified in
        // the vector, create the textfield associated and add them
        // to the panel
        for (int i = 0; i < iNbLabels; i++) {
            Parameter param = parameterVector.get(i);
            // create label
            JLabel lb = new JLabel(param.getDescription());
            // get indice of current element
            String strIndice = new Integer(i).toString();
            // create a component associated to type
            JComponent cp = createComponent(param, strIndice);
            // add labels & textfiel to the panel
View Full Code Here

Examples of fr.soleil.comete.bean.datarecorder.state.utils.Parameter

        int iNbLabels = parameterVector.size();
        // for each item of the vector, create the label with the name specified in
        // the vector, create the textfield associated and add them
        // to the panel
        for (int i = 0; i < iNbLabels; i++) {
            Parameter param = parameterVector.get(i);
            // create label
            JLabel lb = new JLabel(param.getDescription());
            // get indice of current element
            String strIndice = new Integer(i).toString();
            // create a component associated to type
            JComponent cp = createComponent(param, strIndice);
            // add labels & textfiel to the panel
View Full Code Here

Examples of fr.soleil.lib.flyscan.model.parsing.plugin.Parameter

                default:
                    break;

            }
        } else if (entry instanceof FakeEntry) {
            Parameter param = ((FakeEntry) entry).getParam();
            description = param.getDescription();
            editorComponent = getEditorComponent(entry, labelName, param, entryContainer, tabTitle);
        }

        // Editor
        if (editorComponent == null && !entry.getKey().equals(ParsingUtil.LEVEL) && customParametersPanel != null
View Full Code Here

Examples of fr.tm.elibel.smartqvt.qvt.emof.Parameter

  public static String patternOfOperation(Operation op){
    String text = op.getName() + "(";
    boolean first = true;
    for (Iterator iter = op.getOwnedParameter().iterator(); iter
        .hasNext(); first = false) {
      Parameter param = (Parameter) iter.next();
      String temp = param.getName();
      if ((param.getType() != null)
          && (param.getType().getName() != null))
        temp += " : " + param.getType().getName();

      if (!first) {
        text += ", ";
      }
      text += "${" + temp + "}";
View Full Code Here

Examples of gargl.utilities.Parameter

        JsonObject header = JsonUtils.asJsonObject(jHeader);
        String name = header.get("name").getAsString();
        String value = header.get("value").getAsString();
        this.addHeader(name, value);
        if (Parameter.isParameter(value)) {
          this.addParameter(new Parameter(value));
        }
      }
    }
  }
View Full Code Here

Examples of gri.gridp.modules.Parameter

  public Object read(Element elem) throws IOException {
    return readList(elem);
  }

  public void writeList(List list, Element elem) throws IOException {
    Parameter param;
    for (int i=0; i<list.size(); i++) {
      param = (Parameter)list.get(i);

      if (param instanceof Flag) {
        Element child = new Element("flag");
View Full Code Here

Examples of io.crate.planner.symbol.Parameter

    private Object currentParameter;

    private SubscriptContext analyzeSubscript(String expressionString) {
        Analyzer.ParameterContext parameterContext = mock(Analyzer.ParameterContext.class);
        when(parameterContext.getAsSymbol(anyInt())).thenReturn(new Parameter(currentParameter));
        SubscriptContext context = new SubscriptContext(parameterContext);
        Expression expression = SqlParser.createExpression(expressionString);
        expression.accept(visitor, context);
        return context;
    }
View Full Code Here

Examples of it.eng.spagobi.behaviouralmodel.analyticaldriver.bo.Parameter

  private List<String> loadList(Integer parId) throws Exception {
    logger.debug("IN");
    List<String> toReturn = new ArrayList<String>();
    try {
      IParameterDAO pardao = DAOFactory.getParameterDAO();
      Parameter par = pardao.loadForExecutionByParameterIDandRoleName(parId, roleToBeUsed);
      ModalitiesValue modVal = par.getModalityValue();
      // get the lov provider
      String looProvider = modVal.getLovProvider();
      // get from the request the type of lov
      ILovDetail lovDetail = LovDetailFactory.getLovFromXML(looProvider);
      IEngUserProfile profile = GeneralUtilities.createNewUserProfile(userIndentifierToBeUsed);
View Full Code Here

Examples of ivory.smrf.model.Parameter

    if (queryTerms.length == 0) {
      return cliques;
    }

    // Default parameter associated with CliqueSet.
    Parameter parameter = new Parameter(Parameter.DEFAULT, 1.0f);

    // Get potential type.
    String potentialType = XMLTools.getAttributeValue(domNode, "potential", null);
    if (potentialType == null) {
      throw new ConfigurationException("A potential attribute must be specified in order to generate a clique set!");
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.