| org.apache.xerces.xni.grammars.XMLGrammarDescription
XMLGrammarDescription | public interface XMLGrammarDescription extends XMLResourceIdentifier(Code) | | This interface describes basic attributes of XML grammars--their
physical location and their type.
author: Neil Graham, IBM version: $Id: XMLGrammarDescription.java 447245 2006-09-18 05:22:10Z mrglavas $ |
Field Summary | |
final public static String | XML_DTD The grammar type constant for DTD grammars. | final public static String | XML_SCHEMA The grammar type constant for XML Schema grammars. |
XML_DTD | final public static String XML_DTD(Code) | | The grammar type constant for DTD grammars. When getGrammarType()
method returns this constant, the object should be an instance of
the XMLDTDDescription interface.
|
XML_SCHEMA | final public static String XML_SCHEMA(Code) | | The grammar type constant for XML Schema grammars. When getGrammarType()
method returns this constant, the object should be an instance of
the XMLSchemaDescription interface.
|
getGrammarType | public String getGrammarType()(Code) | | Return the type of this grammar.
the type of this grammar |
|
|