|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DtdModel
This is the interface model of DTD file structures. DTD file may contains list of elements and attributes. Using this interface model one could browse through the elements and attributes.
Method Summary | |
---|---|
int |
dtdAttListCount()
Get numbers of attList element within the dtd file. |
int |
dtdElementCount()
Get numbers of Element within the dtd file. |
DtdAttList |
getDtdAttListAt(int idx)
Get attList model object at specific index. |
java.util.ArrayList<DtdAttList> |
getDtdAttLists()
Get list of attList element of DTD. |
DtdElement |
getDtdElement(java.lang.String name)
Get Element model object by giving its name |
DtdElement |
getDtdElementAt(int idx)
Get Element model object at specific index. |
java.util.ArrayList<DtdElement> |
getDtdElements()
Get list of elements element of DTD. |
Method Detail |
---|
java.util.ArrayList<DtdAttList> getDtdAttLists()
java.util.ArrayList<DtdElement> getDtdElements()
int dtdAttListCount()
int dtdElementCount()
DtdAttList getDtdAttListAt(int idx)
idx
- Index
DtdElement getDtdElementAt(int idx)
idx
- Index
DtdElement getDtdElement(java.lang.String name)
name
- Element name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |