Examples of RubyVariableMeta


Examples of org.typeexit.kettle.plugin.steps.ruby.meta.RubyVariableMeta

      if (!varName.startsWith("$")) {
        varName = "$" + varName;
      }
      // replace white space with underscores
      varName = varName.replaceAll("\\s", "_");
      rubyVars.add(new RubyVariableMeta(varName, t.getText(2)));
    }

    // generate info steps
    List<RoleStepMeta> infoSteps = input.getInfoSteps();
    infoSteps.clear();
View Full Code Here

Examples of org.typeexit.kettle.plugin.steps.ruby.meta.RubyVariableMeta

     
      for(int i=0;i<nrVars;i++){
        Node sNode = XMLHandler.getSubNodeByNr(rubyVariablesNode, "rubyVariable", i);
        String name = XMLHandler.getTagValue(sNode, "name");
        String value = XMLHandler.getTagValue(sNode, "value");
        rubyVariables.add(new RubyVariableMeta(name, value));
      }
     
      // load info steps
      infoSteps.clear();
View Full Code Here

Examples of org.typeexit.kettle.plugin.steps.ruby.meta.RubyVariableMeta

      // load ruby variables
      int nrVars = rep.countNrStepAttributes(id_step, "ruby_variable_name");
      rubyVariables.clear();
     
      for(int i=0;i<nrVars;i++){
        RubyVariableMeta var = new RubyVariableMeta(
          rep.getStepAttributeString(id_step, i, "ruby_variable_name"),
          rep.getStepAttributeString(id_step, i, "ruby_variable_value")
        );
        rubyVariables.add(var);
      }
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.