Searched defs:excludeComments (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMSubTreeData.java47 private boolean excludeComments; field in class:DOMSubTreeData
51 public DOMSubTreeData(Node root, boolean excludeComments) { argument
53 this.ni = new DelayedNodeIterator(root, excludeComments);
54 this.excludeComments = excludeComments;
65 public boolean excludeComments() { method in class:DOMSubTreeData
66 return excludeComments;
79 DelayedNodeIterator(Node root, boolean excludeComments) { argument
81 this.withComments = !excludeComments;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DXMLSignatureInput.java90 boolean excludeComments=false; field in class:XMLSignatureInput
247 XMLUtils.getSet(_subNode,this._inputNodeSet, excludeNode, this.excludeComments);
419 this.excludeComments +"/" + this.getSourceURI();
485 * @return Returns the excludeComments.
488 return excludeComments;
492 * @param excludeComments The excludeComments to set.
494 public void setExcludeComments(boolean excludeComments) { argument
495 this.excludeComments = excludeComments;
[all...]

Completed in 23 milliseconds