Home | History | Annotate | Download | only in stream

Lines Matching defs:systemId

81      * <p>This constructor allows the systemID to be set in addition
86 * @param systemId Must be a String that conforms to the URI syntax.
88 public StreamSource(InputStream inputStream, String systemId) {
90 setSystemId(systemId);
116 * @param systemId Must be a String that conforms to the URI syntax.
118 public StreamSource(Reader reader, String systemId) {
120 setSystemId(systemId);
126 * @param systemId Must be a String that conforms to the URI syntax.
128 public StreamSource(String systemId) {
129 this.systemId = systemId;
224 * @param systemId The system identifier as a URL string.
226 public void setSystemId(String systemId) {
227 this.systemId = systemId;
237 return systemId;
246 this.systemId = FilePathToURI.filepath2URI(f.getAbsolutePath());
261 private String systemId;