< prev index next >

src/com/sun/org/apache/xerces/internal/dom/PSVIElementNSImpl.java

Print this page
rev 2127 : 8048021: Remove @version tag in jaxp repo
Reviewed-by: joehw


  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.dom;
  22 
  23 import java.io.IOException;
  24 import java.io.NotSerializableException;
  25 import java.io.ObjectInputStream;
  26 import java.io.ObjectOutputStream;
  27 
  28 import com.sun.org.apache.xerces.internal.xs.ElementPSVI;
  29 import com.sun.org.apache.xerces.internal.xs.*;
  30 
  31 /**
  32  * Element namespace implementation; stores PSVI element items.
  33  *
  34  * @xerces.internal
  35  *
  36  * @author Sandy Gao, IBM
  37  *
  38  * @version $Id: PSVIElementNSImpl.java,v 1.6 2010/08/20 18:51:54 joehw Exp $
  39  */
  40 public class PSVIElementNSImpl extends ElementNSImpl implements ElementPSVI {
  41 
  42     /** Serialization version. */
  43     static final long serialVersionUID = 6815489624636016068L;
  44 
  45     /**
  46      * Construct an element node.
  47      */
  48     public PSVIElementNSImpl(CoreDocumentImpl ownerDocument, String namespaceURI,
  49                              String qualifiedName, String localName) {
  50         super(ownerDocument, namespaceURI, qualifiedName, localName);
  51     }
  52 
  53     /**
  54      * Construct an element node.
  55      */
  56     public PSVIElementNSImpl(CoreDocumentImpl ownerDocument, String namespaceURI,
  57                              String qualifiedName) {
  58         super(ownerDocument, namespaceURI, qualifiedName);




  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xerces.internal.dom;
  22 
  23 import java.io.IOException;
  24 import java.io.NotSerializableException;
  25 import java.io.ObjectInputStream;
  26 import java.io.ObjectOutputStream;
  27 
  28 import com.sun.org.apache.xerces.internal.xs.ElementPSVI;
  29 import com.sun.org.apache.xerces.internal.xs.*;
  30 
  31 /**
  32  * Element namespace implementation; stores PSVI element items.
  33  *
  34  * @xerces.internal
  35  *
  36  * @author Sandy Gao, IBM
  37  *

  38  */
  39 public class PSVIElementNSImpl extends ElementNSImpl implements ElementPSVI {
  40 
  41     /** Serialization version. */
  42     static final long serialVersionUID = 6815489624636016068L;
  43 
  44     /**
  45      * Construct an element node.
  46      */
  47     public PSVIElementNSImpl(CoreDocumentImpl ownerDocument, String namespaceURI,
  48                              String qualifiedName, String localName) {
  49         super(ownerDocument, namespaceURI, qualifiedName, localName);
  50     }
  51 
  52     /**
  53      * Construct an element node.
  54      */
  55     public PSVIElementNSImpl(CoreDocumentImpl ownerDocument, String namespaceURI,
  56                              String qualifiedName) {
  57         super(ownerDocument, namespaceURI, qualifiedName);


< prev index next >