Package com.exigen.ie.constrainer.impl

Examples of com.exigen.ie.constrainer.impl.IntExpCardIntExp


   * of variables in <code> array </code> bound to the value of <code> exp <code>.
   *
   * @throws Failure
   */
  public IntExp cardinality(IntExpArray array, IntExp exp) throws Failure {
    return new IntExpCardIntExp(array, exp);
  }
View Full Code Here


   * <b>NOTE:</b> The expression is not required to be bound.
   *
   * @return The expression that corresponds the cardinality of <code>exp</code>
   */
  public IntExp cardinality (IntExp exp) throws Failure {
    return new IntExpCardIntExp (this, exp);
  }
View Full Code Here

TOP

Related Classes of com.exigen.ie.constrainer.impl.IntExpCardIntExp

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.