com.thaiopensource.xml.dtd.om.NameSpec 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
Jing/Trang - tools for validating and translating RelaxNG
The newest version!
package com.thaiopensource.xml.dtd.om;
public abstract class NameSpec {
public static final int NAME = 0;
public static final int NAME_SPEC_REF = 1;
public abstract int getType();
public abstract void accept(NameSpecVisitor visitor) throws Exception;
public abstract String getValue();
}