FileDocCategorySizeDatePackage
EntityImpl.javaAPI DocAndroid 1.5 API1980Wed May 06 22:41:06 BST 2009org.apache.harmony.xml.dom

EntityImpl

public class EntityImpl extends NodeImpl implements Entity
Provides a straightforward implementation of the corresponding W3C DOM interface. The class is used internally only, thus only notable members that are not in the original interface are documented (the W3C docs are quite extensive). Hope that's ok.

Some of the fields may have package visibility, so other classes belonging to the DOM implementation can easily access them while maintaining the DOM tree structure.

Fields Summary
private String
notationName
private String
publicID
private String
systemID
Constructors Summary
EntityImpl(DocumentImpl document, String notationName, String publicID, String systemID)

        super(document);
        this.notationName = notationName;
        this.publicID = publicID;
        this.systemID = systemID;
    
Methods Summary
public java.lang.StringgetNodeName()

        return getNotationName();
    
public shortgetNodeType()

        return Node.ENTITY_NODE;
    
public java.lang.StringgetNotationName()

        return notationName;
    
public java.lang.StringgetPublicId()

        return publicID;
    
public java.lang.StringgetSystemId()

        return systemID;