XMLEntityDeclpublic class XMLEntityDecl extends Object
Fields Summary |
---|
public String | namename | public String | publicIdpublicId | public String | systemIdsystemId | public String | baseSystemIdbaseSystemId | public String | notationnotation | public boolean | isPEisPE | public boolean | inExternalNote: flag of where the entity is defined, not whether it is a external entity | public String | valueValue. |
Methods Summary |
---|
public void | clear()clear
this.name = null;
this.publicId = null;
this.systemId = null;
this.baseSystemId = null;
this.notation = null;
this.value = null;
this.isPE = false;
this.inExternal = false;
| public void | setValues(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String baseSystemId, java.lang.String notation, boolean isPE, boolean inExternal)setValues
setValues(name, publicId, systemId, baseSystemId, notation, null, isPE, inExternal);
| public void | setValues(java.lang.String name, java.lang.String publicId, java.lang.String systemId, java.lang.String baseSystemId, java.lang.String notation, java.lang.String value, boolean isPE, boolean inExternal)setValues
this.name = name;
this.publicId = publicId;
this.systemId = systemId;
this.baseSystemId = baseSystemId;
this.notation = notation;
this.value = value;
this.isPE = isPE;
this.inExternal = inExternal;
|
|