All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.thaiopensource.relaxng.impl.AfterPattern Maven / Gradle / Ivy

Go to download

A branch of Jing used by the Nu Html Checker. (Jing is a tool for validating documents against RelaxNG schemas.)

The newest version!
package com.thaiopensource.relaxng.impl;


class AfterPattern extends BinaryPattern {
  AfterPattern(Pattern p1, Pattern p2) {
    super(false,
	  combineHashCode(AFTER_HASH_CODE, p1.hashCode(), p2.hashCode()),
	  p1,
	  p2);
  }

  boolean isNotAllowed() {
    return p1.isNotAllowed();
  }

  Object apply(PatternFunction f) {
    return f.caseAfter(this);
  }
  void accept(PatternVisitor visitor) {
    // XXX visitor.visitAfter(p1, p2);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy