1 19 package org.netbeans.tax; 20 21 import java.util.Collection ; 22 23 28 public interface TreeDTDRoot { 29 30 31 public TreeDocumentRoot getOwnerDocument (); 32 33 34 35 public Collection getElementDeclarations (); 36 37 38 public Collection getAttlistDeclarations (); 39 40 41 public Collection getAttributeDeclarations (String elementName); 42 43 44 public Collection getEntityDeclarations (); 45 46 47 public Collection getNotationDeclarations (); 48 49 } 50 | Popular Tags |