Lines Matching refs:entity

47     // whether this entity's declaration was found in the internal
60 /** Constructs an entity. */
70 /** Returns true if this entity was declared in the external subset. */
75 /** Returns true if this is an external entity. */
78 /** Returns true if this is an unparsed entity. */
81 /** Clears the entity. */
87 /** Sets the values of the entity. */
88 public void setValues(Entity entity) {
89 name = entity.name;
90 inExternalSubset = entity.inExternalSubset;
95 * Internal entity.
106 /** Text value of entity. */
118 /** Constructs an internal entity. */
128 /** Returns true if this is an external entity. */
133 /** Returns true if this is an unparsed entity. */
138 /** Clears the entity. */
144 /** Sets the values of the entity. */
145 public void setValues(Entity entity) {
146 super.setValues(entity);
150 /** Sets the values of the entity. */
151 public void setValues(InternalEntity entity) {
152 super.setValues(entity);
153 text = entity.text;
159 * External entity.
170 /** container for all relevant entity location information. */
173 /** Notation name for unparsed entity. */
185 /** Constructs an internal entity. */
197 /** Returns true if this is an external entity. */
202 /** Returns true if this is an unparsed entity. */
207 /** Clears the entity. */
214 /** Sets the values of the entity. */
215 public void setValues(Entity entity) {
216 super.setValues(entity);
221 /** Sets the values of the entity. */
222 public void setValues(ExternalEntity entity) {
223 super.setValues(entity);
224 entityLocation = entity.entityLocation;
225 notation = entity.notation;
246 * REVISIT: do we need a property for internal entity buffer size?
253 /** Default internal entity buffer size (1024). */
272 /** entity location information */
285 // whether this is an external or internal scanned entity
288 //each 'external' parsed entity may have xml/text declaration containing version information
354 /**each 'external' parsed entity may have xml/text declaration containing version information
355 * @return String version of the enity, for an internal entity version would be null
361 /** each 'external' parsed entity may have xml/text declaration containing version information
362 * @param String version of the external parsed entity
368 /** Returns the java.io.Reader associated with this entity.Readers are used
370 * used to open the entity.
371 * @return java.io.Reader Reader associated with this entity
378 /** if entity was opened using the stream, return the associated inputstream
379 * with this entity
380 *@return java.io.InputStream InputStream associated with this entity
390 /** Constructs a scanned entity. */
412 * Release any resources associated with this entity.
425 /** Returns whether the encoding of this entity was externally specified. **/
430 /** Sets whether the encoding of this entity was externally specified. **/
443 /** Returns true if this is an external entity. */
448 /** Returns true if this is an unparsed entity. */