Package com.exigen.ie.constrainer.impl

Examples of com.exigen.ie.constrainer.impl.IntSetVarImpl$ElementsObserver


   * @param name
   *            Symbolic name of the new variable
   * @return variable created based on set of possible values
   */
  public IntSetVar addIntSetVar(int[] values, String name) {
    IntSetVar var = new IntSetVarImpl(this, values, name);
    return addIntSetVar(var);
  }
View Full Code Here


   * @param values
   *            set of possible values
   * @return variable created based on set of possible values
   */
  public IntSetVar addIntSetVar(int[] values) {
    IntSetVar var = new IntSetVarImpl(this, values, "");
    return addIntSetVar(var);
  }
View Full Code Here

TOP

Related Classes of com.exigen.ie.constrainer.impl.IntSetVarImpl$ElementsObserver

Copyright © 2018 www.massapicom. 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.