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

Variable Index

 o name
The entity name.
 o publicID
The public ID of the entity.
 o systemID
The system ID of the entity.
 o type
The entity type.
 o TYPE_PARAMETER
Entity is a parameter entity.
 o TYPE_PARSEDGENERAL
Entity is a parsed general entity.
 o TYPE_UNKNOWN
Unknown entity type.
 o TYPE_UNPARSED
Entity is an unparsed entity.

Constructor Index

 o Entity()
Construct a new Entity.
 o Entity(String)
Construct a new Entity and set its name.

Variables

 o TYPE_UNKNOWN
 public static final int TYPE_UNKNOWN
Unknown entity type.

 o TYPE_PARSEDGENERAL
 public static final int TYPE_PARSEDGENERAL
Entity is a parsed general entity.

 o TYPE_PARAMETER
 public static final int TYPE_PARAMETER
Entity is a parameter entity.

 o TYPE_UNPARSED
 public static final int TYPE_UNPARSED
Entity is an unparsed entity.

 o type
 public int type
The entity type.

 o name
 public String name
The entity name.

 o systemID
 public String systemID
The system ID of the entity. May be null.

 o publicID
 public String publicID
The public ID of the entity. May be null.

Constructors

 o Entity
 public Entity()
Construct a new Entity.

 o 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