This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.xml.crypto.dom
class DOMStructure

java.lang.Object extended by javax.xml.crypto.dom.DOMStructure
All Implemented Interfaces:
XMLStructure

public class DOMStructure
extends Object
implements XMLStructure

A DOM-specific {@link XMLStructure}. The purpose of this class is to allow a DOM node to be used to represent extensible content (any elements or mixed content) in XML Signature structures.

If a sequence of nodes is needed, the node contained in the DOMStructure is the first node of the sequence and successive nodes can be accessed by invoking {@link Node#getNextSibling}.

If the owner document of the DOMStructure is different than the target document of an XMLSignature, the {@link XMLSignature#sign(XMLSignContext)} method imports the node into the target document before generating the signature.


Constructor Summary

          Creates a DOMStructure containing the specified node.
 
Method Summary
 Node

          Returns the node contained in this DOMStructure.
 boolean

          
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DOMStructure

public DOMStructure(Node node)
Creates a DOMStructure containing the specified node.

Parameters:
node - the node
Method Detail

getNode

public Node getNode()
Returns the node contained in this DOMStructure.

Returns:
the node

isFeatureSupported

public boolean isFeatureSupported(String feature)
Parameters:
feature


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.