Examples of prepareToCreateVariableTerm()


Examples of lupos.gui.operatorgraph.visualeditor.visualrif.operators.FrameOperator.prepareToCreateVariableTerm()

      switch((Integer) obj.termParams.get(0).accept(this.scout, arg)){
      case Scout.RULEVARIABLE :   if(((String)obj.termParams.get(0).accept(this, arg)).startsWith("ALIASVAR")){
        // TODO: check!
      }
      final Term termVar1 = frameOperator.prepareToCreateVariableTerm((String)obj.termParams.get(0).accept(this, arg));
      terms.add(termVar1);
      break;

      case Scout.CONSTANT: String[] constArray = new String[2];
      constArray = (String[]) obj.termParams.get(0).accept(this, arg);
View Full Code Here

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.operators.FrameOperator.prepareToCreateVariableTerm()

        break;
      }

      switch((Integer) obj.termName.accept(this.scout, arg)){
      case Scout.RULEVARIABLE :
        final Term termNameVar = frameOperator.prepareToCreateVariableTerm((String)obj.termName.accept(this, arg));
        terms.add(termNameVar);
        break;

      case Scout.CONSTANT:
        String[] constArray = new String[2];
View Full Code Here

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.operators.FrameOperator.prepareToCreateVariableTerm()

        break;
      }

      switch((Integer) obj.termParams.get(1).accept(this.scout, arg)){
      case Scout.RULEVARIABLE :
        final Term termVar2 = frameOperator.prepareToCreateVariableTerm((String)obj.termParams.get(1).accept(this, arg));
        terms.add(termVar2);
        break;

      case Scout.CONSTANT: String[] constArray = new String[2];
        constArray = (String[]) obj.termParams.get(1).accept(this, arg);
View Full Code Here

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.operators.ListOperator.prepareToCreateVariableTerm()

    for (int i = 0; i < obj.getItems().size(); i++) {
      tmp =  (Integer) obj.getItems().get(i).accept(this.scout, arg);
      switch(tmp){

        case Scout.RULEVARIABLE:
          final Term termVar = listOperator.prepareToCreateVariableTerm((String)obj.getItems().get(i).accept(this, arg));
          terms.add(termVar);
          break;

        case Scout.CONSTANT:
          String[] constArray = new String[2];
View Full Code Here

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.operators.UnitermOperator.prepareToCreateVariableTerm()

      int tmp = 0;
      for (int i = 0; i < obj.termParams.size(); i++) {
        tmp =  (Integer) obj.termParams.get(i).accept(this.scout, arg);
        switch(tmp){
        case Scout.RULEVARIABLE:
          final Term termVar = uniTerm.prepareToCreateVariableTerm((String)obj.termParams.get(i).accept(this, arg));
          terms.add(termVar);
          break;

        case Scout.CONSTANT:
          String[] constArray = new String[2];
View Full Code Here

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.operators.UnitermOperator.prepareToCreateVariableTerm()

      tmp =  (Integer) obj.termParams.get(i).accept(this.scout, arg);

      switch(tmp){

        case Scout.RULEVARIABLE:
          final Term termVar = uniTerm.prepareToCreateVariableTerm((String)obj.termParams.get(i).accept(this, arg));
          terms.add(termVar);
          break;

        case Scout.CONSTANT:
          String[] constArray = new String[2];
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.