All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.xml.crypto.dom.DOMStructure Maven / Gradle / Ivy

The newest version!
/*    */ package javax.xml.crypto.dom;
/*    */ 
/*    */ import javax.xml.crypto.XMLStructure;
/*    */ import org.w3c.dom.Node;
/*    */ 
/*    */ public class DOMStructure
/*    */   implements XMLStructure
/*    */ {
/*    */   private final Node node;
/*    */ 
/*    */   public DOMStructure(Node node)
/*    */   {
/* 41 */     if (node == null) {
/* 42 */       throw new NullPointerException("node cannot be null");
/*    */     }
/* 44 */     this.node = node;
/*    */   }
/*    */ 
/*    */   public Node getNode()
/*    */   {
/* 53 */     return this.node;
/*    */   }
/*    */ 
/*    */   public boolean isFeatureSupported(String feature)
/*    */   {
/* 60 */     if (feature == null) {
/* 61 */       throw new NullPointerException();
/*    */     }
/* 63 */     return false;
/*    */   }
/*    */ }

/* Location:           E:\HYN\Java\trunk\ref\lib-dep\xmldsig\xmldsig.jar
 * Qualified Name:     javax.xml.crypto.dom.DOMStructure
 * JD-Core Version:    0.6.2
 */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy