Lines Matching refs:systemId
52 * <code>systemId</code>
71 * <code>systemId</code>
94 * @param systemId The system identifier which may be used in association with this node.
96 public DOMResult(Node node, String systemId) {
99 setSystemId(systemId);
121 * <p><code>systemId</code> will be set to <code>null</code>.</p>
169 * then the behavior is the same as calling {@link #DOMResult(Node node, String systemId)},
174 * @param systemId The system identifier which may be used in association with this node.
183 public DOMResult(Node node, Node nextSibling, String systemId) {
200 setSystemId(systemId);
250 * {@link #DOMResult(Node node, Node nextSibling, String systemId)} or
306 * {@link #DOMResult(Node node, Node nextSibling, String systemId)} or
319 * <p>Set the systemId that may be used in association with the node.</p>
321 * @param systemId The system identifier as a URI string.
323 public void setSystemId(String systemId) {
324 this.systemId = systemId;
331 * {@link #DOMResult(Node node, String systemId)},
332 * {@link #DOMResult(Node node, Node nextSibling, String systemId)} or
333 * {@link #setSystemId(String systemId)},
339 return systemId;
361 private String systemId = null;