![JAR search and dependency download from the Maven repository](/logo.png)
com.thaiopensource.relaxng.impl.AfterPattern Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jing Show documentation
Show all versions of jing Show documentation
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