Package org.dbwiki.data.query.condition

Examples of org.dbwiki.data.query.condition.HasChangesCondition


    switch (operator.type()) {
    case XAQLToken.EXISTS_PREDICATE:
      return new ExistsCondition(targetPath, quantifier, negated);
    case XAQLToken.HAS_CHANGES_PREDICATE:
      if (tokens.size() > index) {
        return new HasChangesCondition(targetPath, quantifier, negated, this.getProvenanceCondition(tokens.get(index), versionIndex));
      } else {
        return new HasChangesCondition(targetPath, quantifier, negated);
      }
    case XAQLToken.WAS_MODIFIED_PREDICATE:
      if (tokens.size() > index) {
        return new WasModifiedCondition(targetPath, quantifier, negated, this.getProvenanceCondition(tokens.get(index), versionIndex));
      } else {
View Full Code Here

TOP

Related Classes of org.dbwiki.data.query.condition.HasChangesCondition

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.