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

org.jcp.xml.dsig.internal.dom.DOMStructure Maven / Gradle / Ivy

There is a newer version: 1.0.1-2
Show newest version
/*    */ package org.jcp.xml.dsig.internal.dom;
/*    */ 
/*    */ import javax.xml.crypto.MarshalException;
/*    */ import javax.xml.crypto.XMLStructure;
/*    */ import javax.xml.crypto.dom.DOMCryptoContext;
/*    */ import org.w3c.dom.Node;
/*    */ 
/*    */ public abstract class DOMStructure
/*    */   implements XMLStructure
/*    */ {
/*    */   public final boolean isFeatureSupported(String feature)
/*    */   {
/* 22 */     if (feature == null) {
/* 23 */       throw new NullPointerException();
/*    */     }
/* 25 */     return false;
/*    */   }
/*    */ 
/*    */   public abstract void marshal(Node paramNode, String paramString, DOMCryptoContext paramDOMCryptoContext)
/*    */     throws MarshalException;
/*    */ }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy