/** * Copyright (c) 2009 Juwi MacMillan Group GmbH * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * @(#)DOMAttrImpl.java 1.11 2000/08/16 * */ package org.tizzit.util.tidy; import org.w3c.dom.DOMException; import org.w3c.dom.Node; import org.w3c.dom.TypeInfo; import org.w3c.dom.UserDataHandler; /** * * DOMAttrImpl * * (c) 1998-2000 (W3C) MIT, INRIA, Keio University * See Tidy.java for the copyright notice. * Derived from <a href="http://www.w3.org/People/Raggett/tidy"> * HTML Tidy Release 4 Aug 2000</a> * * @author Dave Raggett <dsr@w3.org> * @author Andy Quick <ac.quick@sympatico.ca> (translation to Java) * @version 1.4, 1999/09/04 DOM Support * @version 1.5, 1999/10/23 Tidy Release 27 Sep 1999 * @version 1.6, 1999/11/01 Tidy Release 22 Oct 1999 * @version 1.7, 1999/12/06 Tidy Release 30 Nov 1999 * @version 1.8, 2000/01/22 Tidy Release 13 Jan 2000 * @version 1.9, 2000/06/03 Tidy Release 30 Apr 2000 * @version 1.10, 2000/07/22 Tidy Release 8 Jul 2000 * @version 1.11, 2000/08/16 Tidy Release 4 Aug 2000 */ public class DOMAttrImpl extends DOMNodeImpl implements org.w3c.dom.Attr { protected AttVal avAdaptee; protected DOMAttrImpl(AttVal adaptee) { super(null); // must override all methods of DOMNodeImpl this.avAdaptee = adaptee; } /* --------------------- DOM ---------------------------- */ public String getNodeValue() throws DOMException { return getValue(); } public void setNodeValue(String nodeValue) throws DOMException { setValue(nodeValue); } public String getNodeName() { return getName(); } public short getNodeType() { return org.w3c.dom.Node.ATTRIBUTE_NODE; } public org.w3c.dom.Node getParentNode() { return null; } public org.w3c.dom.NodeList getChildNodes() { // NOT SUPPORTED return null; } public org.w3c.dom.Node getFirstChild() { // NOT SUPPORTED return null; } public org.w3c.dom.Node getLastChild() { // NOT SUPPORTED return null; } public org.w3c.dom.Node getPreviousSibling() { return null; } public org.w3c.dom.Node getNextSibling() { return null; } public org.w3c.dom.NamedNodeMap getAttributes() { return null; } public org.w3c.dom.Document getOwnerDocument() { return null; } public org.w3c.dom.Node insertBefore(org.w3c.dom.Node newChild, org.w3c.dom.Node refChild) throws DOMException { throw new DOMExceptionImpl(DOMException.NO_MODIFICATION_ALLOWED_ERR, "Not supported"); } public org.w3c.dom.Node replaceChild(org.w3c.dom.Node newChild, org.w3c.dom.Node oldChild) throws DOMException { throw new DOMExceptionImpl(DOMException.NO_MODIFICATION_ALLOWED_ERR, "Not supported"); } public org.w3c.dom.Node removeChild(org.w3c.dom.Node oldChild) throws DOMException { throw new DOMExceptionImpl(DOMException.NO_MODIFICATION_ALLOWED_ERR, "Not supported"); } public org.w3c.dom.Node appendChild(org.w3c.dom.Node newChild) throws DOMException { throw new DOMExceptionImpl(DOMException.NO_MODIFICATION_ALLOWED_ERR, "Not supported"); } public boolean hasChildNodes() { return false; } public org.w3c.dom.Node cloneNode(boolean deep) { return null; } /** * @see org.w3c.dom.Attr#getName */ public String getName() { return avAdaptee.attribute; } /** * @see org.w3c.dom.Attr#getSpecified */ public boolean getSpecified() { return true; } /** * Returns value of this attribute. If this attribute has a null value, * then the attribute name is returned instead. * Thanks to Brett Knights <brett@knightsofthenet.com> for this fix. * @see org.w3c.dom.Attr#getValue * */ public String getValue() { return (avAdaptee.value == null) ? avAdaptee.attribute : avAdaptee.value; } /** * @see org.w3c.dom.Attr#setValue */ public void setValue(String value) { avAdaptee.value = value; } /** * DOM2 - not implemented. */ public org.w3c.dom.Element getOwnerElement() { return null; } /** @see org.w3c.dom.Attr#getSchemaTypeInfo() */ public TypeInfo getSchemaTypeInfo() { // TODO Auto-generated method stub return null; } /** @see org.w3c.dom.Attr#isId() */ public boolean isId() { // TODO Auto-generated method stub return false; } /** @see org.w3c.dom.Node#compareDocumentPosition(org.w3c.dom.Node) */ public short compareDocumentPosition(Node other) throws DOMException { // TODO Auto-generated method stub return 0; } /** @see org.w3c.dom.Node#getBaseURI() */ public String getBaseURI() { // TODO Auto-generated method stub return null; } /** @see org.w3c.dom.Node#getFeature(java.lang.String, java.lang.String) */ public Object getFeature(String feature, String version) { // TODO Auto-generated method stub return null; } /** @see org.w3c.dom.Node#getTextContent() */ public String getTextContent() throws DOMException { // TODO Auto-generated method stub return null; } /** @see org.w3c.dom.Node#getUserData(java.lang.String) */ public Object getUserData(String key) { // TODO Auto-generated method stub return null; } /** @see org.w3c.dom.Node#isDefaultNamespace(java.lang.String) */ public boolean isDefaultNamespace(String namespaceURI) { // TODO Auto-generated method stub return false; } /** @see org.w3c.dom.Node#isEqualNode(org.w3c.dom.Node) */ public boolean isEqualNode(Node arg) { // TODO Auto-generated method stub return false; } /** @see org.w3c.dom.Node#isSameNode(org.w3c.dom.Node) */ public boolean isSameNode(Node other) { // TODO Auto-generated method stub return false; } /** @see org.w3c.dom.Node#lookupNamespaceURI(java.lang.String) */ public String lookupNamespaceURI(String prefix) { // TODO Auto-generated method stub return null; } /** @see org.w3c.dom.Node#lookupPrefix(java.lang.String) */ public String lookupPrefix(String namespaceURI) { // TODO Auto-generated method stub return null; } /** @see org.w3c.dom.Node#setTextContent(java.lang.String) */ public void setTextContent(String textContent) throws DOMException { // TODO Auto-generated method stub } /** @see org.w3c.dom.Node#setUserData(java.lang.String, java.lang.Object, org.w3c.dom.UserDataHandler) */ public Object setUserData(String key, Object data, UserDataHandler handler) { // TODO Auto-generated method stub return null; } }