XMLDTDDescription.java revision 286
0N/A/*
2362N/A * reserved comment block
0N/A * DO NOT REMOVE OR ALTER!
0N/A */
0N/A/*
0N/A * Copyright 2002,2004 The Apache Software Foundation.
2362N/A *
0N/A * Licensed under the Apache License, Version 2.0 (the "License");
2362N/A * you may not use this file except in compliance with the License.
0N/A * You may obtain a copy of the License at
0N/A *
0N/A * http://www.apache.org/licenses/LICENSE-2.0
0N/A *
0N/A * Unless required by applicable law or agreed to in writing, software
0N/A * distributed under the License is distributed on an "AS IS" BASIS,
0N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0N/A * See the License for the specific language governing permissions and
0N/A * limitations under the License.
0N/A */
0N/A
2362N/Apackage com.sun.org.apache.xerces.internal.xni.grammars;
2362N/A
2362N/A/**
0N/A * All information specific to DTD grammars.
0N/A *
0N/A * @author Sandy Gao, IBM
0N/A */
0N/Apublic interface XMLDTDDescription extends XMLGrammarDescription {
0N/A
0N/A /**
0N/A * Return the root name of this DTD.
0N/A *
0N/A * @return the root name. null if the name is unknown.
0N/A */
0N/A public String getRootName();
0N/A
0N/A} // interface XMLDTDDescription
0N/A