Examples of RArray


Examples of com.dtrules.interpreter.RArray

    }

    public void arrayExecute(DTState state) throws RulesException {
      IRObject value = state.datapop();
      int position = state.datapop().intValue();
      RArray rarray = state.datapop().rArrayValue();
      if (state.testState(DTState.TRACE)) {
        state.traceInfo("addat", "arrayID", rarray.getID() + "",
            "index", position + "", value.postFix());
      }
      rarray.add(position, value);

    }
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.