com.thaiopensource.relaxng.output.xsd.basic.AbstractSchemaVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trang Show documentation
Show all versions of trang Show documentation
Trang, a multi-format schema converter based on RELAX NG.
package com.thaiopensource.relaxng.output.xsd.basic;
public class AbstractSchemaVisitor implements SchemaVisitor {
public void visitGroup(GroupDefinition def) {
}
public void visitAttributeGroup(AttributeGroupDefinition def) {
}
public void visitSimpleType(SimpleTypeDefinition def) {
}
public void visitInclude(Include include) {
}
public void visitRoot(RootDeclaration decl) {
}
public void visitComment(Comment comment) {
}
}