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
interface XMLStructure

All Known Subinterfaces:
KeyInfo, KeyName, KeyValue, Manifest, PGPData, Reference, RetrievalMethod, SignatureProperties, SignatureProperty, SignedInfo, X509Data, X509IssuerSerial, XMLObject, XMLSignature, XMLSignature.SignatureValue
All Known Implementing Classes:
DOMStructure

Most common ways to construct:

Iterator ki = …;

XMLStructure kiType = (XMLStructure)ki.next();

Based on 6 examples

 

List content = …;
int i = …;

XMLStructure oxs = (XMLStructure)content.get(i);

Based on 6 examples


public interface XMLStructure

A representation of an XML structure from any namespace. The purpose of this interface is to group (and provide type safety for) all representations of XML structures.


Method Summary
 boolean

          Indicates whether a specified feature is supported.
 

Method Detail

isFeatureSupported

public boolean isFeatureSupported(String feature)
Indicates whether a specified feature is supported.

Parameters:
feature - the feature name (as an absolute URI)
Returns:
true if the specified feature is supported, false otherwise


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/.