01: package com.jclark.xml.parse;
02:
03: /**
04: * Information about a markup declaration.
05: * @see com.jclark.xml.parse.base.Application#markupDeclaration
06: * @version $Revision: 1.2 $ $Date: 1998/06/25 04:41:34 $
07: */
08: public interface MarkupDeclarationEvent {
09: static int ATTRIBUTE = 0;
10: static int ELEMENT = 1;
11: static int GENERAL_ENTITY = 2;
12: static int PARAMETER_ENTITY = 3;
13: static int NOTATION = 4;
14:
15: int getType();
16:
17: String getName();
18:
19: String getAttributeName();
20:
21: DTD getDTD();
22: }
|