Lines Matching refs:systemId
92 * @param systemId Must be a String that conforms to the URI syntax.
94 public StreamSource(InputStream inputStream, String systemId) {
96 setSystemId(systemId);
122 * @param systemId Must be a String that conforms to the URI syntax.
124 public StreamSource(Reader reader, String systemId) {
126 setSystemId(systemId);
132 * @param systemId Must be a String that conforms to the URI syntax.
134 public StreamSource(String systemId) {
135 this.systemId = systemId;
233 * @param systemId The system identifier as a URL string.
235 public void setSystemId(String systemId) {
236 this.systemId = systemId;
246 return systemId;
258 this.systemId = f.toURI().toASCIIString();
273 private String systemId;