All Packages Class Hierarchy This Package Previous Next Index
Class org.xmlmiddleware.schemas.dtds.Entity
java.lang.Object
|
+----org.xmlmiddleware.schemas.dtds.Entity
- public class Entity
- extends Object
Base class for entities.
- Version:
- 2.0
- Author:
- Ronald Bourret
-
name
- The entity name.
-
publicID
- The public ID of the entity.
-
systemID
- The system ID of the entity.
-
type
- The entity type.
-
TYPE_PARAMETER
- Entity is a parameter entity.
-
TYPE_PARSEDGENERAL
- Entity is a parsed general entity.
-
TYPE_UNKNOWN
- Unknown entity type.
-
TYPE_UNPARSED
- Entity is an unparsed entity.
-
Entity()
- Construct a new Entity.
-
Entity(String)
- Construct a new Entity and set its name.
TYPE_UNKNOWN
public static final int TYPE_UNKNOWN
- Unknown entity type.
TYPE_PARSEDGENERAL
public static final int TYPE_PARSEDGENERAL
- Entity is a parsed general entity.
TYPE_PARAMETER
public static final int TYPE_PARAMETER
- Entity is a parameter entity.
TYPE_UNPARSED
public static final int TYPE_UNPARSED
- Entity is an unparsed entity.
type
public int type
- The entity type.
name
public String name
- The entity name.
systemID
public String systemID
- The system ID of the entity. May be null.
publicID
public String publicID
- The public ID of the entity. May be null.
Entity
public Entity()
- Construct a new Entity.
Entity
public Entity(String name)
- Construct a new Entity and set its name.
- Parameters:
- eter - name The entity's name.
All Packages Class Hierarchy This Package Previous Next Index