Searched refs:systemID (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/javax/xml/transform/dom/
H A DDOMSource.java49 private String systemID; field in class:DOMSource
87 * @param systemID Specifies the base URI associated with node.
89 public DOMSource(Node node, String systemID) { argument
91 setSystemId(systemID);
116 * @param systemID Base URL for this DOM tree.
118 public void setSystemId(String systemID) { argument
119 this.systemID = systemID;
129 return this.systemID;
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DEntityImpl.java38 private String systemID; field in class:EntityImpl
41 String systemID) {
45 this.systemID = systemID;
67 return systemID;
40 EntityImpl(DocumentImpl document, String notationName, String publicID, String systemID) argument
H A DNotationImpl.java38 private String systemID; field in class:NotationImpl
41 String systemID) {
60 return systemID;
40 NotationImpl(DocumentImpl document, String notationName, String publicID, String systemID) argument
/libcore/luni/src/main/java/javax/xml/transform/sax/
H A DTemplatesHandler.java51 * @param systemID Base URI for this stylesheet.
53 public void setSystemId(String systemID); argument
58 * @return The systemID that was set with {@link #setSystemId}.
H A DTransformerHandler.java50 * @param systemID Base URI for the source tree.
52 public void setSystemId(String systemID); argument
57 * @return The systemID that was set with {@link #setSystemId}.
/libcore/luni/src/main/java/javax/xml/transform/
H A DTransformerException.java217 String systemID = locator.getSystemId();
221 if (null != systemID) {
223 sbuffer.append(systemID);
250 String systemID = locator.getSystemId();
254 if (null != systemID) {
256 sbuffer.append(systemID);

Completed in 109 milliseconds