Home | History | Annotate | Download | only in utils

Lines Matching refs:entity

40 import org.w3c.dom.Entity;
898 * Entity References.)
1095 * entity with the specified name in the same document as the context
1097 * there is no such entity.
1100 * is provided) to resolve the entity, rather than the URI in the
1121 * @param name A string containing the Entity Name of the unparsed
1122 * entity.
1125 * @return String containing the URI of the Unparsed Entity, or an
1126 * empty string if no such entity exists.
1139 Entity entity = (Entity) entities.getNamedItem(name);
1140 if(null == entity)
1143 String notationName = entity.getNotationName();
1148 // identifier to generate a URI for the entity instead of the URI
1153 // the resource containing the entity declaration as the base
1156 url = entity.getSystemId();
1160 url = entity.getPublicId();