/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIDOMNodeIterator.idl */ #ifndef __gen_nsIDOMNodeIterator_h__ #define __gen_nsIDOMNodeIterator_h__ #ifndef __gen_domstubs_h__ #include "domstubs.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif class nsIDOMNodeIterator; /* forward declaration */ class nsIDOMNodeFilter; /* forward declaration */ /* starting interface: nsIDOMNodeIterator */ #define NS_IDOMNODEITERATOR_IID_STR "354b5f02-1dd2-11b2-b053-b8c2997022a0" #define NS_IDOMNODEITERATOR_IID \ {0x354b5f02, 0x1dd2, 0x11b2, \ { 0xb0, 0x53, 0xb8, 0xc2, 0x99, 0x70, 0x22, 0xa0 }} class NS_NO_VTABLE nsIDOMNodeIterator : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMNODEITERATOR_IID) /* readonly attribute nsIDOMNode root; */ NS_IMETHOD GetRoot(nsIDOMNode * *aRoot) = 0; /* readonly attribute unsigned long whatToShow; */ NS_IMETHOD GetWhatToShow(PRUint32 *aWhatToShow) = 0; /* readonly attribute nsIDOMNodeFilter filter; */ NS_IMETHOD GetFilter(nsIDOMNodeFilter * *aFilter) = 0; /* readonly attribute boolean expandEntityReferences; */ NS_IMETHOD GetExpandEntityReferences(PRBool *aExpandEntityReferences) = 0; /* nsIDOMNode nextNode () raises (DOMException); */ NS_IMETHOD NextNode(nsIDOMNode **_retval) = 0; /* nsIDOMNode previousNode () raises (DOMException); */ NS_IMETHOD PreviousNode(nsIDOMNode **_retval) = 0; /* void detach (); */ NS_IMETHOD Detach(void) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIDOMNODEITERATOR \ NS_IMETHOD GetRoot(nsIDOMNode * *aRoot); \ NS_IMETHOD GetWhatToShow(PRUint32 *aWhatToShow); \ NS_IMETHOD GetFilter(nsIDOMNodeFilter * *aFilter); \ NS_IMETHOD GetExpandEntityReferences(PRBool *aExpandEntityReferences); \ NS_IMETHOD NextNode(nsIDOMNode **_retval); \ NS_IMETHOD PreviousNode(nsIDOMNode **_retval); \ NS_IMETHOD Detach(void); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIDOMNODEITERATOR(_to) \ NS_IMETHOD GetRoot(nsIDOMNode * *aRoot) { return _to GetRoot(aRoot); } \ NS_IMETHOD GetWhatToShow(PRUint32 *aWhatToShow) { return _to GetWhatToShow(aWhatToShow); } \ NS_IMETHOD GetFilter(nsIDOMNodeFilter * *aFilter) { return _to GetFilter(aFilter); } \ NS_IMETHOD GetExpandEntityReferences(PRBool *aExpandEntityReferences) { return _to GetExpandEntityReferences(aExpandEntityReferences); } \ NS_IMETHOD NextNode(nsIDOMNode **_retval) { return _to NextNode(_retval); } \ NS_IMETHOD PreviousNode(nsIDOMNode **_retval) { return _to PreviousNode(_retval); } \ NS_IMETHOD Detach(void) { return _to Detach(); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIDOMNODEITERATOR(_to) \ NS_IMETHOD GetRoot(nsIDOMNode * *aRoot) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRoot(aRoot); } \ NS_IMETHOD GetWhatToShow(PRUint32 *aWhatToShow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetWhatToShow(aWhatToShow); } \ NS_IMETHOD GetFilter(nsIDOMNodeFilter * *aFilter) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFilter(aFilter); } \ NS_IMETHOD GetExpandEntityReferences(PRBool *aExpandEntityReferences) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetExpandEntityReferences(aExpandEntityReferences); } \ NS_IMETHOD NextNode(nsIDOMNode **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->NextNode(_retval); } \ NS_IMETHOD PreviousNode(nsIDOMNode **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->PreviousNode(_retval); } \ NS_IMETHOD Detach(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Detach(); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsDOMNodeIterator : public nsIDOMNodeIterator { public: NS_DECL_ISUPPORTS NS_DECL_NSIDOMNODEITERATOR nsDOMNodeIterator(); virtual ~nsDOMNodeIterator(); /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsDOMNodeIterator, nsIDOMNodeIterator) nsDOMNodeIterator::nsDOMNodeIterator() { NS_INIT_ISUPPORTS(); /* member initializers and constructor code */ } nsDOMNodeIterator::~nsDOMNodeIterator() { /* destructor code */ } /* readonly attribute nsIDOMNode root; */ NS_IMETHODIMP nsDOMNodeIterator::GetRoot(nsIDOMNode * *aRoot) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute unsigned long whatToShow; */ NS_IMETHODIMP nsDOMNodeIterator::GetWhatToShow(PRUint32 *aWhatToShow) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMNodeFilter filter; */ NS_IMETHODIMP nsDOMNodeIterator::GetFilter(nsIDOMNodeFilter * *aFilter) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute boolean expandEntityReferences; */ NS_IMETHODIMP nsDOMNodeIterator::GetExpandEntityReferences(PRBool *aExpandEntityReferences) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIDOMNode nextNode () raises (DOMException); */ NS_IMETHODIMP nsDOMNodeIterator::NextNode(nsIDOMNode **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsIDOMNode previousNode () raises (DOMException); */ NS_IMETHODIMP nsDOMNodeIterator::PreviousNode(nsIDOMNode **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* void detach (); */ NS_IMETHODIMP nsDOMNodeIterator::Detach() { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsIDOMNodeIterator_h__ */ .