/usr/include/thunderbird-11.0.1/nsIDOMRange.h is in thunderbird-dev 11.0.1+build1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-11.0.1+build1/build-tree/mozilla/mozilla/dom/interfaces/range/nsIDOMRange.idl
*/
#ifndef __gen_nsIDOMRange_h__
#define __gen_nsIDOMRange_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
/* starting interface: nsIDOMRange */
#define NS_IDOMRANGE_IID_STR "a6cf90ce-15b3-11d2-932e-00805f8add32"
#define NS_IDOMRANGE_IID \
{0xa6cf90ce, 0x15b3, 0x11d2, \
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMRange : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMRANGE_IID)
/* readonly attribute nsIDOMNode startContainer; */
NS_SCRIPTABLE NS_IMETHOD GetStartContainer(nsIDOMNode * *aStartContainer) = 0;
/* readonly attribute long startOffset; */
NS_SCRIPTABLE NS_IMETHOD GetStartOffset(PRInt32 *aStartOffset) = 0;
/* readonly attribute nsIDOMNode endContainer; */
NS_SCRIPTABLE NS_IMETHOD GetEndContainer(nsIDOMNode * *aEndContainer) = 0;
/* readonly attribute long endOffset; */
NS_SCRIPTABLE NS_IMETHOD GetEndOffset(PRInt32 *aEndOffset) = 0;
/* readonly attribute boolean collapsed; */
NS_SCRIPTABLE NS_IMETHOD GetCollapsed(bool *aCollapsed) = 0;
/* readonly attribute nsIDOMNode commonAncestorContainer; */
NS_SCRIPTABLE NS_IMETHOD GetCommonAncestorContainer(nsIDOMNode * *aCommonAncestorContainer) = 0;
/* void setStart (in nsIDOMNode refNode, in long offset) raises (RangeException,DOMException); */
NS_SCRIPTABLE NS_IMETHOD SetStart(nsIDOMNode *refNode, PRInt32 offset) = 0;
/* void setEnd (in nsIDOMNode refNode, in long offset) raises (RangeException,DOMException); */
NS_SCRIPTABLE NS_IMETHOD SetEnd(nsIDOMNode *refNode, PRInt32 offset) = 0;
/* void setStartBefore (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_SCRIPTABLE NS_IMETHOD SetStartBefore(nsIDOMNode *refNode) = 0;
/* void setStartAfter (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_SCRIPTABLE NS_IMETHOD SetStartAfter(nsIDOMNode *refNode) = 0;
/* void setEndBefore (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_SCRIPTABLE NS_IMETHOD SetEndBefore(nsIDOMNode *refNode) = 0;
/* void setEndAfter (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_SCRIPTABLE NS_IMETHOD SetEndAfter(nsIDOMNode *refNode) = 0;
/* void collapse (in boolean toStart) raises (DOMException); */
NS_SCRIPTABLE NS_IMETHOD Collapse(bool toStart) = 0;
/* void selectNode (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_SCRIPTABLE NS_IMETHOD SelectNode(nsIDOMNode *refNode) = 0;
/* void selectNodeContents (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_SCRIPTABLE NS_IMETHOD SelectNodeContents(nsIDOMNode *refNode) = 0;
enum {
START_TO_START = 0U,
START_TO_END = 1U,
END_TO_END = 2U,
END_TO_START = 3U
};
/* short compareBoundaryPoints (in unsigned short how, in nsIDOMRange sourceRange) raises (DOMException); */
NS_SCRIPTABLE NS_IMETHOD CompareBoundaryPoints(PRUint16 how, nsIDOMRange *sourceRange, PRInt16 *_retval NS_OUTPARAM) = 0;
/* void deleteContents () raises (DOMException); */
NS_SCRIPTABLE NS_IMETHOD DeleteContents(void) = 0;
/* nsIDOMDocumentFragment extractContents () raises (DOMException); */
NS_SCRIPTABLE NS_IMETHOD ExtractContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM) = 0;
/* nsIDOMDocumentFragment cloneContents () raises (DOMException); */
NS_SCRIPTABLE NS_IMETHOD CloneContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM) = 0;
/* void insertNode (in nsIDOMNode newNode) raises (DOMException,RangeException); */
NS_SCRIPTABLE NS_IMETHOD InsertNode(nsIDOMNode *newNode) = 0;
/* void surroundContents (in nsIDOMNode newParent) raises (DOMException,RangeException); */
NS_SCRIPTABLE NS_IMETHOD SurroundContents(nsIDOMNode *newParent) = 0;
/* nsIDOMRange cloneRange () raises (DOMException); */
NS_SCRIPTABLE NS_IMETHOD CloneRange(nsIDOMRange * *_retval NS_OUTPARAM) = 0;
/* DOMString toString () raises (DOMException); */
NS_SCRIPTABLE NS_IMETHOD ToString(nsAString & _retval NS_OUTPARAM) = 0;
/* void detach (); */
NS_SCRIPTABLE NS_IMETHOD Detach(void) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMRange, NS_IDOMRANGE_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSIDOMRANGE \
NS_SCRIPTABLE NS_IMETHOD GetStartContainer(nsIDOMNode * *aStartContainer); \
NS_SCRIPTABLE NS_IMETHOD GetStartOffset(PRInt32 *aStartOffset); \
NS_SCRIPTABLE NS_IMETHOD GetEndContainer(nsIDOMNode * *aEndContainer); \
NS_SCRIPTABLE NS_IMETHOD GetEndOffset(PRInt32 *aEndOffset); \
NS_SCRIPTABLE NS_IMETHOD GetCollapsed(bool *aCollapsed); \
NS_SCRIPTABLE NS_IMETHOD GetCommonAncestorContainer(nsIDOMNode * *aCommonAncestorContainer); \
NS_SCRIPTABLE NS_IMETHOD SetStart(nsIDOMNode *refNode, PRInt32 offset); \
NS_SCRIPTABLE NS_IMETHOD SetEnd(nsIDOMNode *refNode, PRInt32 offset); \
NS_SCRIPTABLE NS_IMETHOD SetStartBefore(nsIDOMNode *refNode); \
NS_SCRIPTABLE NS_IMETHOD SetStartAfter(nsIDOMNode *refNode); \
NS_SCRIPTABLE NS_IMETHOD SetEndBefore(nsIDOMNode *refNode); \
NS_SCRIPTABLE NS_IMETHOD SetEndAfter(nsIDOMNode *refNode); \
NS_SCRIPTABLE NS_IMETHOD Collapse(bool toStart); \
NS_SCRIPTABLE NS_IMETHOD SelectNode(nsIDOMNode *refNode); \
NS_SCRIPTABLE NS_IMETHOD SelectNodeContents(nsIDOMNode *refNode); \
NS_SCRIPTABLE NS_IMETHOD CompareBoundaryPoints(PRUint16 how, nsIDOMRange *sourceRange, PRInt16 *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD DeleteContents(void); \
NS_SCRIPTABLE NS_IMETHOD ExtractContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD CloneContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD InsertNode(nsIDOMNode *newNode); \
NS_SCRIPTABLE NS_IMETHOD SurroundContents(nsIDOMNode *newParent); \
NS_SCRIPTABLE NS_IMETHOD CloneRange(nsIDOMRange * *_retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD ToString(nsAString & _retval NS_OUTPARAM); \
NS_SCRIPTABLE NS_IMETHOD Detach(void);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSIDOMRANGE(_to) \
NS_SCRIPTABLE NS_IMETHOD GetStartContainer(nsIDOMNode * *aStartContainer) { return _to GetStartContainer(aStartContainer); } \
NS_SCRIPTABLE NS_IMETHOD GetStartOffset(PRInt32 *aStartOffset) { return _to GetStartOffset(aStartOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetEndContainer(nsIDOMNode * *aEndContainer) { return _to GetEndContainer(aEndContainer); } \
NS_SCRIPTABLE NS_IMETHOD GetEndOffset(PRInt32 *aEndOffset) { return _to GetEndOffset(aEndOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetCollapsed(bool *aCollapsed) { return _to GetCollapsed(aCollapsed); } \
NS_SCRIPTABLE NS_IMETHOD GetCommonAncestorContainer(nsIDOMNode * *aCommonAncestorContainer) { return _to GetCommonAncestorContainer(aCommonAncestorContainer); } \
NS_SCRIPTABLE NS_IMETHOD SetStart(nsIDOMNode *refNode, PRInt32 offset) { return _to SetStart(refNode, offset); } \
NS_SCRIPTABLE NS_IMETHOD SetEnd(nsIDOMNode *refNode, PRInt32 offset) { return _to SetEnd(refNode, offset); } \
NS_SCRIPTABLE NS_IMETHOD SetStartBefore(nsIDOMNode *refNode) { return _to SetStartBefore(refNode); } \
NS_SCRIPTABLE NS_IMETHOD SetStartAfter(nsIDOMNode *refNode) { return _to SetStartAfter(refNode); } \
NS_SCRIPTABLE NS_IMETHOD SetEndBefore(nsIDOMNode *refNode) { return _to SetEndBefore(refNode); } \
NS_SCRIPTABLE NS_IMETHOD SetEndAfter(nsIDOMNode *refNode) { return _to SetEndAfter(refNode); } \
NS_SCRIPTABLE NS_IMETHOD Collapse(bool toStart) { return _to Collapse(toStart); } \
NS_SCRIPTABLE NS_IMETHOD SelectNode(nsIDOMNode *refNode) { return _to SelectNode(refNode); } \
NS_SCRIPTABLE NS_IMETHOD SelectNodeContents(nsIDOMNode *refNode) { return _to SelectNodeContents(refNode); } \
NS_SCRIPTABLE NS_IMETHOD CompareBoundaryPoints(PRUint16 how, nsIDOMRange *sourceRange, PRInt16 *_retval NS_OUTPARAM) { return _to CompareBoundaryPoints(how, sourceRange, _retval); } \
NS_SCRIPTABLE NS_IMETHOD DeleteContents(void) { return _to DeleteContents(); } \
NS_SCRIPTABLE NS_IMETHOD ExtractContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM) { return _to ExtractContents(_retval); } \
NS_SCRIPTABLE NS_IMETHOD CloneContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM) { return _to CloneContents(_retval); } \
NS_SCRIPTABLE NS_IMETHOD InsertNode(nsIDOMNode *newNode) { return _to InsertNode(newNode); } \
NS_SCRIPTABLE NS_IMETHOD SurroundContents(nsIDOMNode *newParent) { return _to SurroundContents(newParent); } \
NS_SCRIPTABLE NS_IMETHOD CloneRange(nsIDOMRange * *_retval NS_OUTPARAM) { return _to CloneRange(_retval); } \
NS_SCRIPTABLE NS_IMETHOD ToString(nsAString & _retval NS_OUTPARAM) { return _to ToString(_retval); } \
NS_SCRIPTABLE 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_NSIDOMRANGE(_to) \
NS_SCRIPTABLE NS_IMETHOD GetStartContainer(nsIDOMNode * *aStartContainer) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStartContainer(aStartContainer); } \
NS_SCRIPTABLE NS_IMETHOD GetStartOffset(PRInt32 *aStartOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStartOffset(aStartOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetEndContainer(nsIDOMNode * *aEndContainer) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEndContainer(aEndContainer); } \
NS_SCRIPTABLE NS_IMETHOD GetEndOffset(PRInt32 *aEndOffset) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEndOffset(aEndOffset); } \
NS_SCRIPTABLE NS_IMETHOD GetCollapsed(bool *aCollapsed) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCollapsed(aCollapsed); } \
NS_SCRIPTABLE NS_IMETHOD GetCommonAncestorContainer(nsIDOMNode * *aCommonAncestorContainer) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCommonAncestorContainer(aCommonAncestorContainer); } \
NS_SCRIPTABLE NS_IMETHOD SetStart(nsIDOMNode *refNode, PRInt32 offset) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStart(refNode, offset); } \
NS_SCRIPTABLE NS_IMETHOD SetEnd(nsIDOMNode *refNode, PRInt32 offset) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEnd(refNode, offset); } \
NS_SCRIPTABLE NS_IMETHOD SetStartBefore(nsIDOMNode *refNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStartBefore(refNode); } \
NS_SCRIPTABLE NS_IMETHOD SetStartAfter(nsIDOMNode *refNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetStartAfter(refNode); } \
NS_SCRIPTABLE NS_IMETHOD SetEndBefore(nsIDOMNode *refNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEndBefore(refNode); } \
NS_SCRIPTABLE NS_IMETHOD SetEndAfter(nsIDOMNode *refNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetEndAfter(refNode); } \
NS_SCRIPTABLE NS_IMETHOD Collapse(bool toStart) { return !_to ? NS_ERROR_NULL_POINTER : _to->Collapse(toStart); } \
NS_SCRIPTABLE NS_IMETHOD SelectNode(nsIDOMNode *refNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->SelectNode(refNode); } \
NS_SCRIPTABLE NS_IMETHOD SelectNodeContents(nsIDOMNode *refNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->SelectNodeContents(refNode); } \
NS_SCRIPTABLE NS_IMETHOD CompareBoundaryPoints(PRUint16 how, nsIDOMRange *sourceRange, PRInt16 *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->CompareBoundaryPoints(how, sourceRange, _retval); } \
NS_SCRIPTABLE NS_IMETHOD DeleteContents(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->DeleteContents(); } \
NS_SCRIPTABLE NS_IMETHOD ExtractContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->ExtractContents(_retval); } \
NS_SCRIPTABLE NS_IMETHOD CloneContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->CloneContents(_retval); } \
NS_SCRIPTABLE NS_IMETHOD InsertNode(nsIDOMNode *newNode) { return !_to ? NS_ERROR_NULL_POINTER : _to->InsertNode(newNode); } \
NS_SCRIPTABLE NS_IMETHOD SurroundContents(nsIDOMNode *newParent) { return !_to ? NS_ERROR_NULL_POINTER : _to->SurroundContents(newParent); } \
NS_SCRIPTABLE NS_IMETHOD CloneRange(nsIDOMRange * *_retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->CloneRange(_retval); } \
NS_SCRIPTABLE NS_IMETHOD ToString(nsAString & _retval NS_OUTPARAM) { return !_to ? NS_ERROR_NULL_POINTER : _to->ToString(_retval); } \
NS_SCRIPTABLE 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 nsDOMRange : public nsIDOMRange
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDOMRANGE
nsDOMRange();
private:
~nsDOMRange();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsDOMRange, nsIDOMRange)
nsDOMRange::nsDOMRange()
{
/* member initializers and constructor code */
}
nsDOMRange::~nsDOMRange()
{
/* destructor code */
}
/* readonly attribute nsIDOMNode startContainer; */
NS_IMETHODIMP nsDOMRange::GetStartContainer(nsIDOMNode * *aStartContainer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long startOffset; */
NS_IMETHODIMP nsDOMRange::GetStartOffset(PRInt32 *aStartOffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMNode endContainer; */
NS_IMETHODIMP nsDOMRange::GetEndContainer(nsIDOMNode * *aEndContainer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long endOffset; */
NS_IMETHODIMP nsDOMRange::GetEndOffset(PRInt32 *aEndOffset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean collapsed; */
NS_IMETHODIMP nsDOMRange::GetCollapsed(bool *aCollapsed)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsIDOMNode commonAncestorContainer; */
NS_IMETHODIMP nsDOMRange::GetCommonAncestorContainer(nsIDOMNode * *aCommonAncestorContainer)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setStart (in nsIDOMNode refNode, in long offset) raises (RangeException,DOMException); */
NS_IMETHODIMP nsDOMRange::SetStart(nsIDOMNode *refNode, PRInt32 offset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setEnd (in nsIDOMNode refNode, in long offset) raises (RangeException,DOMException); */
NS_IMETHODIMP nsDOMRange::SetEnd(nsIDOMNode *refNode, PRInt32 offset)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setStartBefore (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_IMETHODIMP nsDOMRange::SetStartBefore(nsIDOMNode *refNode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setStartAfter (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_IMETHODIMP nsDOMRange::SetStartAfter(nsIDOMNode *refNode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setEndBefore (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_IMETHODIMP nsDOMRange::SetEndBefore(nsIDOMNode *refNode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void setEndAfter (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_IMETHODIMP nsDOMRange::SetEndAfter(nsIDOMNode *refNode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void collapse (in boolean toStart) raises (DOMException); */
NS_IMETHODIMP nsDOMRange::Collapse(bool toStart)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void selectNode (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_IMETHODIMP nsDOMRange::SelectNode(nsIDOMNode *refNode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void selectNodeContents (in nsIDOMNode refNode) raises (RangeException,DOMException); */
NS_IMETHODIMP nsDOMRange::SelectNodeContents(nsIDOMNode *refNode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* short compareBoundaryPoints (in unsigned short how, in nsIDOMRange sourceRange) raises (DOMException); */
NS_IMETHODIMP nsDOMRange::CompareBoundaryPoints(PRUint16 how, nsIDOMRange *sourceRange, PRInt16 *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void deleteContents () raises (DOMException); */
NS_IMETHODIMP nsDOMRange::DeleteContents()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMDocumentFragment extractContents () raises (DOMException); */
NS_IMETHODIMP nsDOMRange::ExtractContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMDocumentFragment cloneContents () raises (DOMException); */
NS_IMETHODIMP nsDOMRange::CloneContents(nsIDOMDocumentFragment * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void insertNode (in nsIDOMNode newNode) raises (DOMException,RangeException); */
NS_IMETHODIMP nsDOMRange::InsertNode(nsIDOMNode *newNode)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void surroundContents (in nsIDOMNode newParent) raises (DOMException,RangeException); */
NS_IMETHODIMP nsDOMRange::SurroundContents(nsIDOMNode *newParent)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* nsIDOMRange cloneRange () raises (DOMException); */
NS_IMETHODIMP nsDOMRange::CloneRange(nsIDOMRange * *_retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* DOMString toString () raises (DOMException); */
NS_IMETHODIMP nsDOMRange::ToString(nsAString & _retval NS_OUTPARAM)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void detach (); */
NS_IMETHODIMP nsDOMRange::Detach()
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIDOMRange_h__ */
|