![JAR search and dependency download from the Maven repository](/logo.png)
com.thaiopensource.relaxng.impl.PatternVisitor 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;
import org.relaxng.datatype.Datatype;
public interface PatternVisitor {
void visitEmpty();
void visitNotAllowed();
void visitError();
void visitGroup(Pattern p1, Pattern p2);
void visitInterleave(Pattern p1, Pattern p2);
void visitChoice(Pattern p1, Pattern p2);
void visitOneOrMore(Pattern p);
void visitElement(NameClass nc, Pattern content);
void visitAttribute(NameClass ns, Pattern value);
void visitData(Datatype dt);
void visitDataExcept(Datatype dt, Pattern except);
void visitValue(Datatype dt, Object obj);
void visitText();
void visitList(Pattern p);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy