Home | History | Annotate | Download | only in transformer

Lines Matching refs:systemID

200    * @param systemID Base URI for the source tree.
202 public void setSystemId(String systemID)
204 m_baseSystemID = systemID;
205 m_dtm.setDocumentBaseURI(systemID);
211 * @return The systemID that was set with {@link #setSystemId}.
237 * @param systemId The entity's system identifier.
248 public InputSource resolveEntity(String publicId, String systemId)
254 return m_entityResolver.resolveEntity(publicId, systemId);
271 * @param systemId The notation's system identifier, or null.
276 public void notationDecl(String name, String publicId, String systemId)
282 m_dtdHandler.notationDecl(name, publicId, systemId);
291 * @param systemId The entity's system identifier, or null.
298 String name, String publicId, String systemId, String notationName)
304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName);
761 * @param systemId The declared system identifier for the
768 public void startDTD(String name, String publicId, String systemId)
774 + publicId + ", " + systemId);
778 m_lexicalHandler.startDTD(name, publicId, systemId);
1019 * @param systemId The declared system identifier of the entity.
1025 String name, String publicId, String systemId) throws SAXException
1030 + ", " + publicId + ", " + systemId);
1034 m_declHandler.externalEntityDecl(name, publicId, systemId);