com.thaiopensource.xml.dtd.om.AttributeDefaultVisitor 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.xml.dtd.om;
public interface AttributeDefaultVisitor {
public void defaultValue(String value) throws Exception;
public void fixedValue(String value) throws Exception;
public void impliedValue() throws Exception;
public void requiredValue() throws Exception;
public void attributeDefaultRef(String name, AttributeDefault ad)
throws Exception;
}