Searched refs:systemId (Results 1 - 25 of 72) sorted by relevance

123

/libcore/luni/src/main/java/javax/xml/transform/stream/
H A DStreamResult.java77 * @param systemId Must be a String that conforms to the URI syntax.
79 public StreamResult(String systemId) { argument
80 this.systemId = systemId;
143 * @param systemId The system identifier as a URI string.
145 public void setSystemId(String systemId) { argument
146 this.systemId = systemId;
161 this.systemId = FilePathToURI.filepath2URI(f.getAbsolutePath());
171 return systemId;
183 private String systemId; field in class:StreamResult
[all...]
H A DStreamSource.java86 * @param systemId Must be a String that conforms to the URI syntax.
88 public StreamSource(InputStream inputStream, String systemId) { argument
90 setSystemId(systemId);
116 * @param systemId Must be a String that conforms to the URI syntax.
118 public StreamSource(Reader reader, String systemId) { argument
120 setSystemId(systemId);
126 * @param systemId Must be a String that conforms to the URI syntax.
128 public StreamSource(String systemId) { argument
129 this.systemId = systemId;
226 setSystemId(String systemId) argument
261 private String systemId; field in class:StreamSource
[all...]
/libcore/luni/src/main/java/javax/xml/transform/
H A DSource.java36 * @param systemId The system identifier as a URL string.
38 public void setSystemId(String systemId); argument
H A DResult.java69 * @param systemId The system identifier as a URI string.
71 public void setSystemId(String systemId); argument
/libcore/luni/src/main/java/org/xml/sax/
H A DInputSource.java86 * @param systemId The system identifier (URI).
93 public InputSource (String systemId) argument
95 setSystemId(systemId);
188 * @param systemId The system identifier as a string.
194 public void setSystemId (String systemId) argument
196 this.systemId = systemId;
214 return systemId;
331 private String systemId;
330 private String systemId; field in class:InputSource
H A DSAXParseException.java110 * @param systemId The system identifier of the entity that generated
117 public SAXParseException (String message, String publicId, String systemId,
121 init(publicId, systemId, lineNumber, columnNumber);
141 * @param systemId The system identifier of the entity that generated
149 public SAXParseException (String message, String publicId, String systemId,
153 init(publicId, systemId, lineNumber, columnNumber);
162 * @param systemId The system identifier of the entity which generated the exception,
167 private void init (String publicId, String systemId,
171 this.systemId = systemId;
116 SAXParseException(String message, String publicId, String systemId, int lineNumber, int columnNumber) argument
148 SAXParseException(String message, String publicId, String systemId, int lineNumber, int columnNumber, Exception e) argument
166 init(String publicId, String systemId, int lineNumber, int columnNumber) argument
251 private String systemId; field in class:SAXParseException
[all...]
H A DDTDHandler.java62 * <p>At least one of publicId and systemId must be non-null.
73 * @param systemId The notation's system identifier, or null if
82 String systemId)
104 * @param systemId The entity's system identifier.
111 String systemId,
80 notationDecl(String name, String publicId, String systemId) argument
109 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
H A DEntityResolver.java45 * public InputSource resolveEntity (String publicId, String systemId)
47 * if (systemId.equals("http://www.myhost.com/today")) {
101 * @param systemId The system identifier of the external entity
114 String systemId)
113 resolveEntity(String publicId, String systemId) argument
H A DHandlerBase.java67 * @param systemId The system identifier provided in the XML
75 public InputSource resolveEntity (String publicId, String systemId)
99 * @param systemId The notation system identifier.
102 public void notationDecl (String name, String publicId, String systemId)
118 * @param systemId The entity system identifier.
123 String systemId, String notationName)
74 resolveEntity(String publicId, String systemId) argument
100 notationDecl(String name, String publicId, String systemId) argument
120 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
H A DMockResolver.java34 public void addEntity(String publicId, String systemId, InputSource source) { argument
35 entities.put("[" + publicId + ":" + systemId + "]", source);
38 public void removeEntity(String publicId, String systemId) { argument
39 entities.remove("[" + publicId + ":" + systemId + "]");
42 public InputSource resolveEntity(String publicId, String systemId) argument
44 return entities.get("[" + publicId + ":" + systemId + "]");
/libcore/luni/src/main/java/javax/xml/transform/sax/
H A DSAXResult.java102 * @param systemId The system identifier as a URI string.
104 public void setSystemId(String systemId) { argument
105 this.systemId = systemId;
115 return systemId;
136 private String systemId; field in class:SAXResult
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DLocatorImpl.java117 return systemId;
170 * @param systemId The new system identifier, or null
174 public void setSystemId (String systemId)
176 this.systemId = systemId;
211 private String systemId;
172 setSystemId(String systemId) argument
208 private String systemId; field in class:LocatorImpl
/libcore/luni/src/main/java/javax/xml/transform/dom/
H A DDOMResult.java47 * <code>systemId</code>
66 * <code>systemId</code>
89 * @param systemId The system identifier which may be used in association with this node.
91 public DOMResult(Node node, String systemId) { argument
94 setSystemId(systemId);
116 * <p><code>systemId</code> will be set to <code>null</code>.</p>
163 * then the behavior is the same as calling {@link #DOMResult(Node node, String systemId)},
168 * @param systemId The system identifier which may be used in association with this node.
175 public DOMResult(Node node, Node nextSibling, String systemId) { argument
192 setSystemId(systemId);
311 setSystemId(String systemId) argument
349 private String systemId = null; field in class:DOMResult
[all...]
/libcore/luni/src/main/java/org/w3c/dom/ls/
H A DLSResourceResolver.java66 * @param systemId The system identifier, a URI reference [<a href='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>], of the
78 String systemId,
75 resolveResource(String type, String namespaceURI, String publicId, String systemId, String baseURI) argument
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDocumentTypeImpl.java40 private String systemId; field in class:DocumentTypeImpl
43 String publicId, String systemId) {
70 this.systemId = systemId;
107 return systemId;
42 DocumentTypeImpl(DocumentImpl document, String qualifiedName, String publicId, String systemId) argument
/libcore/luni/src/main/java/org/xml/sax/ext/
H A DDefaultHandler2.java54 public void startDTD (String name, String publicId, String systemId) argument
87 String publicId, String systemId)
121 * Tells the parser to resolve the systemId against the baseURI
127 * with the <em>systemId</em> already absolutized.
142 * @param systemId The system identifier of the external entity
155 String baseURI, String systemId)
170 * @param systemId The system identifier of the external entity
182 public InputSource resolveEntity (String publicId, String systemId) argument
184 { return resolveEntity (null, publicId, null, systemId); }
86 externalEntityDecl(String name, String publicId, String systemId) argument
154 resolveEntity(String name, String publicId, String baseURI, String systemId) argument
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dnotationgetsystemidnull.java65 String systemId;
72 systemId = notationNode.getSystemId();
73 assertNull("systemId", systemId);
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Ddocumenttypesystemid01.java36 * Create a new DocumentType node with the value "SYS" for its systemId and PUB for
37 * its publicId. Check the value of the systemId and pbulicId attributes.
40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a>
68 String systemId;
73 systemId = docType.getSystemId();
75 assertEquals("documenttypesystemid01", "SYS", systemId);
H A DsystemId01.java42 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a>
68 String systemId;
72 systemId = docType.getSystemId();
73 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, systemId);
H A DcreateDocumentType01.java34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
39 * Invoke method createDocumentType(qualifiedName,publicId,systemId)
41 * string "prefix::local", publicId as "STAFF", and systemId as "staff".
72 String systemId = "staff.xml";
83 newType = domImpl.createDocumentType(malformedName, publicId, systemId);
H A DcreateDocumentType04.java61 String systemId = "myDoc.dtd";
71 docType = domImpl.createDocumentType("", publicId, systemId);
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DDocumentTypeSystemId.java34 * Create a new DocumentType node with the value "SYS" for its systemId and PUB for
35 * its publicId. Check the value of the systemId and pbulicId attributes.
38 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a>
72 String systemId;
77 systemId = docType.getSystemId();
79 assertEquals("documenttypesystemid01", "SYS", systemId);
H A DSystemId.java39 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a>
73 String systemId;
77 systemId = docType.getSystemId();
78 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null,
79 null, null, null, systemId);
H A DCreateDocumentType.java35 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
40 * createDocumentType(qualifiedName,publicId,systemId) on the retrieved
42 * "prefix::local", publicId as "STAFF", and systemId as "staff". Method should
85 String systemId = "staff.xml";
96 domImpl.createDocumentType(malformedName, publicId, systemId);
105 String systemId = "myDoc.dtd";
148 systemId);
160 String systemId = "myDoc.dtd";
169 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
177 String systemId
[all...]
/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMImplementation.java40 * @param systemId The external subset system identifier.
55 String systemId)
53 createDocumentType(String qualifiedName, String publicId, String systemId) argument

Completed in 539 milliseconds

123