01: /*
02: * @(#)XmlChars.java 1.1 00/08/05
03: *
04: * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved.
05: */
06:
07: package com.sun.xml.dtdparser;
08:
09: /**
10: * Base class for entity declarations as used by the parser.
11: *
12: * @author David Brownell
13: * @author Janet Koenig
14: * @version 1.3 00/02/24
15: */
16: class EntityDecl {
17: String name; // <!ENTITY name ... >
18:
19: boolean isFromInternalSubset;
20: boolean isPE;
21: }
|