Home | History | Annotate | Download | only in dom

Lines Matching refs:systemId

47      * <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) {
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) {
192 setSystemId(systemId);
240 * {@link #DOMResult(Node node, Node nextSibling, String systemId)} or
294 * {@link #DOMResult(Node node, Node nextSibling, String systemId)} or
307 * <p>Set the systemId that may be used in association with the node.</p>
309 * @param systemId The system identifier as a URI string.
311 public void setSystemId(String systemId) {
312 this.systemId = systemId;
319 * {@link #DOMResult(Node node, String systemId)},
320 * {@link #DOMResult(Node node, Node nextSibling, String systemId)} or
321 * {@link #setSystemId(String systemId)},
327 return systemId;
349 private String systemId = null;