Package com.exigen.ie.constrainer.impl

Examples of com.exigen.ie.constrainer.impl.FloatVarImpl$UndoFloatVar


   * trace.
   */
  public FloatVar addFloatVarTrace(double min, double max, String name,
      int trace) {
    FloatVar var = trace != 0 ? new FloatVarImplTrace(this, min, max, name,
        trace) : new FloatVarImpl(this, min, max, name);
    return addFloatVar(var);
  }
View Full Code Here


   * <b>Note:</b>Constrainer's users should not use this method.
   */
  public FloatVar addFloatVarTraceInternal(double min, double max,
      String name, int trace) {
    FloatVar var = trace != 0 ? new FloatVarImplTrace(this, min, max, name,
        trace) : new FloatVarImpl(this, min, max, name);
    return addFloatVarInternal(var);
  }
View Full Code Here

   * @param name
   *            Variable's symbolic name.
   * @return The added variable.
   */
  public FloatVar addFloatVar(double min, double max, String name) {
    FloatVar var = new FloatVarImpl(this, min, max, name);
    return addFloatVar(var);
  }
View Full Code Here

TOP

Related Classes of com.exigen.ie.constrainer.impl.FloatVarImpl$UndoFloatVar

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.