package com.sun.org.apache.xerces.internal.impl.xs.opti;
import org.w3c.dom.TypeInfo;
import org.w3c.dom.Attr;
import org.w3c.dom.Element;
import org.w3c.dom.NodeList;
import org.w3c.dom.DOMException;
public class DefaultElement extends NodeImpl
implements Element {
public DefaultElement() {
}
public DefaultElement(String prefix, String localpart, String rawname, String uri, short nodeType) {
super(prefix, localpart, rawname, uri, nodeType);
}
public String getTagName() {
return null;
}
public String getAttribute(String name) {
return null;
}
public Attr getAttributeNode(String name) {
return null;
}
public NodeList getElementsByTagName(String name) {
return null;
}
public String getAttributeNS(String namespaceURI, String localName) {
return null;
}
public Attr getAttributeNodeNS(String namespaceURI, String localName) {
return null;
}
public NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
return null;
}
public boolean hasAttribute(String name) {
return false;
}
public boolean hasAttributeNS(String namespaceURI, String localName) {
return false;
}
public TypeInfo getSchemaTypeInfo(){
return null;
}
public void setAttribute(String name, String value) throws DOMException {
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
public void removeAttribute(String name) throws DOMException {
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
public Attr removeAttributeNode(Attr oldAttr) throws DOMException {
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
public Attr setAttributeNode(Attr newAttr) throws DOMException {
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
public void setAttributeNS(String namespaceURI, String qualifiedName, String value) throws DOMException {
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
public void removeAttributeNS(String namespaceURI, String localName) throws DOMException {
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
public Attr setAttributeNodeNS(Attr newAttr) throws DOMException {
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
public void setIdAttributeNode(Attr at, boolean makeId) throws DOMException{
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
public void setIdAttribute(String name, boolean makeId) throws DOMException{
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
public void setIdAttributeNS(String namespaceURI, String localName,
boolean makeId) throws DOMException{
throw new DOMException(DOMException.NOT_SUPPORTED_ERR, "Method not supported");
}
}