/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (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.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is TransforMiiX XSLT processor code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * Portions created by the Initial Developer are Copyright (C) 2001 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Peter Van der Beken * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "nsXPathNamespace.h" #include "nsIDOMClassInfo.h" NS_IMPL_ADDREF(nsXPathNamespace) NS_IMPL_RELEASE(nsXPathNamespace) NS_INTERFACE_MAP_BEGIN(nsXPathNamespace) NS_INTERFACE_MAP_ENTRY(nsIDOMXPathNamespace) NS_INTERFACE_MAP_ENTRY(nsIDOMNode) NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMXPathNamespace) NS_INTERFACE_MAP_ENTRY_EXTERNAL_DOM_CLASSINFO(XPathNamespace) NS_INTERFACE_MAP_END nsXPathNamespace::nsXPathNamespace() { } nsXPathNamespace::~nsXPathNamespace() { } /* readonly attribute DOMString nodeName; */ NS_IMETHODIMP nsXPathNamespace::GetNodeName(nsAString & aNodeName) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute DOMString nodeValue; */ NS_IMETHODIMP nsXPathNamespace::GetNodeValue(nsAString & aNodeValue) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsXPathNamespace::SetNodeValue(const nsAString & aNodeValue) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute unsigned short nodeType; */ NS_IMETHODIMP nsXPathNamespace::GetNodeType(PRUint16 *aNodeType) { *aNodeType = XPATH_NAMESPACE_NODE; return NS_OK; } /* readonly attribute nsIDOMNode parentNode; */ NS_IMETHODIMP nsXPathNamespace::GetParentNode(nsIDOMNode * *aParentNode) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMNodeList childNodes; */ NS_IMETHODIMP nsXPathNamespace::GetChildNodes(nsIDOMNodeList * *aChildNodes) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMNode firstChild; */ NS_IMETHODIMP nsXPathNamespace::GetFirstChild(nsIDOMNode * *aFirstChild) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMNode lastChild; */ NS_IMETHODIMP nsXPathNamespace::GetLastChild(nsIDOMNode * *aLastChild) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMNode previousSibling; */ NS_IMETHODIMP nsXPathNamespace::GetPreviousSibling(nsIDOMNode * *aPreviousSibling) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMNode nextSibling; */ NS_IMETHODIMP nsXPathNamespace::GetNextSibling(nsIDOMNode * *aNextSibling) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMNamedNodeMap attributes; */ NS_IMETHODIMP nsXPathNamespace::GetAttributes(nsIDOMNamedNodeMap * *aAttributes) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMDocument ownerDocument; */ NS_IMETHODIMP nsXPathNamespace::GetOwnerDocument(nsIDOMDocument * *aOwnerDocument) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIDOMNode insertBefore (in nsIDOMNode newChild, in nsIDOMNode refChild) raises (DOMException); */ NS_IMETHODIMP nsXPathNamespace::InsertBefore(nsIDOMNode *newChild, nsIDOMNode *refChild, nsIDOMNode **aResult) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIDOMNode replaceChild (in nsIDOMNode newChild, in nsIDOMNode oldChild) raises (DOMException); */ NS_IMETHODIMP nsXPathNamespace::ReplaceChild(nsIDOMNode *newChild, nsIDOMNode *oldChild, nsIDOMNode **aResult) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIDOMNode removeChild (in nsIDOMNode oldChild) raises (DOMException); */ NS_IMETHODIMP nsXPathNamespace::RemoveChild(nsIDOMNode *oldChild, nsIDOMNode **aResult) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIDOMNode appendChild (in nsIDOMNode newChild) raises (DOMException); */ NS_IMETHODIMP nsXPathNamespace::AppendChild(nsIDOMNode *newChild, nsIDOMNode **aResult) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean hasChildNodes (); */ NS_IMETHODIMP nsXPathNamespace::HasChildNodes(PRBool *aResult) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIDOMNode cloneNode (in boolean deep); */ NS_IMETHODIMP nsXPathNamespace::CloneNode(PRBool deep, nsIDOMNode **aResult) { return NS_ERROR_NOT_IMPLEMENTED; } /* void normalize (); */ NS_IMETHODIMP nsXPathNamespace::Normalize() { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean isSupported (in DOMString feature, in DOMString version); */ NS_IMETHODIMP nsXPathNamespace::IsSupported(const nsAString & feature, const nsAString & version, PRBool *aResult) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute DOMString namespaceURI; */ NS_IMETHODIMP nsXPathNamespace::GetNamespaceURI(nsAString & aNamespaceURI) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute DOMString prefix; */ NS_IMETHODIMP nsXPathNamespace::GetPrefix(nsAString & aPrefix) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsXPathNamespace::SetPrefix(const nsAString & aPrefix) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute DOMString localName; */ NS_IMETHODIMP nsXPathNamespace::GetLocalName(nsAString & aLocalName) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean hasAttributes (); */ NS_IMETHODIMP nsXPathNamespace::HasAttributes(PRBool *aResult) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMElement ownerElement; */ NS_IMETHODIMP nsXPathNamespace::GetOwnerElement(nsIDOMElement * *aOwnerElement) { return NS_ERROR_NOT_IMPLEMENTED; }