Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: gecko-sdk/include/nsIDOMElement.h

Issue 20346: Version 1.8 of gecko-sdk. Downloaded from here:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/
Patch Set: Created 11 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « gecko-sdk/include/nsIDOMDocumentView.h ('k') | gecko-sdk/include/nsIDOMElementCSSInlineStyle.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /*
2 * DO NOT EDIT. THIS FILE IS GENERATED FROM c:/builds/tinderbox/XR-Mozilla1.8.0 -Release/WINNT_5.2_Depend/mozilla/dom/public/idl/core/nsIDOMElement.idl
3 */
4
5 #ifndef __gen_nsIDOMElement_h__
6 #define __gen_nsIDOMElement_h__
7
8
9 #ifndef __gen_nsIDOMNode_h__
10 #include "nsIDOMNode.h"
11 #endif
12
13 /* For IDL files that don't want to include root IDL files. */
14 #ifndef NS_NO_VTABLE
15 #define NS_NO_VTABLE
16 #endif
17
18 /* starting interface: nsIDOMElement */
19 #define NS_IDOMELEMENT_IID_STR "a6cf9078-15b3-11d2-932e-00805f8add32"
20
21 #define NS_IDOMELEMENT_IID \
22 {0xa6cf9078, 0x15b3, 0x11d2, \
23 { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
24
25 class NS_NO_VTABLE nsIDOMElement : public nsIDOMNode {
26 public:
27
28 NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMELEMENT_IID)
29
30 /**
31 * The nsIDOMElement interface represents an element in an HTML or
32 * XML document.
33 *
34 * For more information on this interface please see
35 * http://www.w3.org/TR/DOM-Level-2-Core/
36 *
37 * @status FROZEN
38 */
39 /* readonly attribute DOMString tagName; */
40 NS_IMETHOD GetTagName(nsAString & aTagName) = 0;
41
42 /* DOMString getAttribute (in DOMString name); */
43 NS_IMETHOD GetAttribute(const nsAString & name, nsAString & _retval) = 0;
44
45 /* void setAttribute (in DOMString name, in DOMString value) raises (DOMExcep tion); */
46 NS_IMETHOD SetAttribute(const nsAString & name, const nsAString & value) = 0;
47
48 /* void removeAttribute (in DOMString name) raises (DOMException); */
49 NS_IMETHOD RemoveAttribute(const nsAString & name) = 0;
50
51 /* nsIDOMAttr getAttributeNode (in DOMString name); */
52 NS_IMETHOD GetAttributeNode(const nsAString & name, nsIDOMAttr **_retval) = 0;
53
54 /* nsIDOMAttr setAttributeNode (in nsIDOMAttr newAttr) raises (DOMException); */
55 NS_IMETHOD SetAttributeNode(nsIDOMAttr *newAttr, nsIDOMAttr **_retval) = 0;
56
57 /* nsIDOMAttr removeAttributeNode (in nsIDOMAttr oldAttr) raises (DOMExceptio n); */
58 NS_IMETHOD RemoveAttributeNode(nsIDOMAttr *oldAttr, nsIDOMAttr **_retval) = 0;
59
60 /* nsIDOMNodeList getElementsByTagName (in DOMString name); */
61 NS_IMETHOD GetElementsByTagName(const nsAString & name, nsIDOMNodeList **_retv al) = 0;
62
63 /* DOMString getAttributeNS (in DOMString namespaceURI, in DOMString localName ); */
64 NS_IMETHOD GetAttributeNS(const nsAString & namespaceURI, const nsAString & lo calName, nsAString & _retval) = 0;
65
66 /* void setAttributeNS (in DOMString namespaceURI, in DOMString qualifiedName, in DOMString value) raises (DOMException); */
67 NS_IMETHOD SetAttributeNS(const nsAString & namespaceURI, const nsAString & qu alifiedName, const nsAString & value) = 0;
68
69 /* void removeAttributeNS (in DOMString namespaceURI, in DOMString localName) raises (DOMException); */
70 NS_IMETHOD RemoveAttributeNS(const nsAString & namespaceURI, const nsAString & localName) = 0;
71
72 /* nsIDOMAttr getAttributeNodeNS (in DOMString namespaceURI, in DOMString loca lName); */
73 NS_IMETHOD GetAttributeNodeNS(const nsAString & namespaceURI, const nsAString & localName, nsIDOMAttr **_retval) = 0;
74
75 /* nsIDOMAttr setAttributeNodeNS (in nsIDOMAttr newAttr) raises (DOMException ); */
76 NS_IMETHOD SetAttributeNodeNS(nsIDOMAttr *newAttr, nsIDOMAttr **_retval) = 0;
77
78 /* nsIDOMNodeList getElementsByTagNameNS (in DOMString namespaceURI, in DOMStr ing localName); */
79 NS_IMETHOD GetElementsByTagNameNS(const nsAString & namespaceURI, const nsAStr ing & localName, nsIDOMNodeList **_retval) = 0;
80
81 /* boolean hasAttribute (in DOMString name); */
82 NS_IMETHOD HasAttribute(const nsAString & name, PRBool *_retval) = 0;
83
84 /* boolean hasAttributeNS (in DOMString namespaceURI, in DOMString localName); */
85 NS_IMETHOD HasAttributeNS(const nsAString & namespaceURI, const nsAString & lo calName, PRBool *_retval) = 0;
86
87 };
88
89 /* Use this macro when declaring classes that implement this interface. */
90 #define NS_DECL_NSIDOMELEMENT \
91 NS_IMETHOD GetTagName(nsAString & aTagName); \
92 NS_IMETHOD GetAttribute(const nsAString & name, nsAString & _retval); \
93 NS_IMETHOD SetAttribute(const nsAString & name, const nsAString & value); \
94 NS_IMETHOD RemoveAttribute(const nsAString & name); \
95 NS_IMETHOD GetAttributeNode(const nsAString & name, nsIDOMAttr **_retval); \
96 NS_IMETHOD SetAttributeNode(nsIDOMAttr *newAttr, nsIDOMAttr **_retval); \
97 NS_IMETHOD RemoveAttributeNode(nsIDOMAttr *oldAttr, nsIDOMAttr **_retval); \
98 NS_IMETHOD GetElementsByTagName(const nsAString & name, nsIDOMNodeList **_retv al); \
99 NS_IMETHOD GetAttributeNS(const nsAString & namespaceURI, const nsAString & lo calName, nsAString & _retval); \
100 NS_IMETHOD SetAttributeNS(const nsAString & namespaceURI, const nsAString & qu alifiedName, const nsAString & value); \
101 NS_IMETHOD RemoveAttributeNS(const nsAString & namespaceURI, const nsAString & localName); \
102 NS_IMETHOD GetAttributeNodeNS(const nsAString & namespaceURI, const nsAString & localName, nsIDOMAttr **_retval); \
103 NS_IMETHOD SetAttributeNodeNS(nsIDOMAttr *newAttr, nsIDOMAttr **_retval); \
104 NS_IMETHOD GetElementsByTagNameNS(const nsAString & namespaceURI, const nsAStr ing & localName, nsIDOMNodeList **_retval); \
105 NS_IMETHOD HasAttribute(const nsAString & name, PRBool *_retval); \
106 NS_IMETHOD HasAttributeNS(const nsAString & namespaceURI, const nsAString & lo calName, PRBool *_retval);
107
108 /* Use this macro to declare functions that forward the behavior of this interfa ce to another object. */
109 #define NS_FORWARD_NSIDOMELEMENT(_to) \
110 NS_IMETHOD GetTagName(nsAString & aTagName) { return _to GetTagName(aTagName); } \
111 NS_IMETHOD GetAttribute(const nsAString & name, nsAString & _retval) { return _to GetAttribute(name, _retval); } \
112 NS_IMETHOD SetAttribute(const nsAString & name, const nsAString & value) { ret urn _to SetAttribute(name, value); } \
113 NS_IMETHOD RemoveAttribute(const nsAString & name) { return _to RemoveAttribut e(name); } \
114 NS_IMETHOD GetAttributeNode(const nsAString & name, nsIDOMAttr **_retval) { re turn _to GetAttributeNode(name, _retval); } \
115 NS_IMETHOD SetAttributeNode(nsIDOMAttr *newAttr, nsIDOMAttr **_retval) { retur n _to SetAttributeNode(newAttr, _retval); } \
116 NS_IMETHOD RemoveAttributeNode(nsIDOMAttr *oldAttr, nsIDOMAttr **_retval) { re turn _to RemoveAttributeNode(oldAttr, _retval); } \
117 NS_IMETHOD GetElementsByTagName(const nsAString & name, nsIDOMNodeList **_retv al) { return _to GetElementsByTagName(name, _retval); } \
118 NS_IMETHOD GetAttributeNS(const nsAString & namespaceURI, const nsAString & lo calName, nsAString & _retval) { return _to GetAttributeNS(namespaceURI, localNam e, _retval); } \
119 NS_IMETHOD SetAttributeNS(const nsAString & namespaceURI, const nsAString & qu alifiedName, const nsAString & value) { return _to SetAttributeNS(namespaceURI, qualifiedName, value); } \
120 NS_IMETHOD RemoveAttributeNS(const nsAString & namespaceURI, const nsAString & localName) { return _to RemoveAttributeNS(namespaceURI, localName); } \
121 NS_IMETHOD GetAttributeNodeNS(const nsAString & namespaceURI, const nsAString & localName, nsIDOMAttr **_retval) { return _to GetAttributeNodeNS(namespaceURI, localName, _retval); } \
122 NS_IMETHOD SetAttributeNodeNS(nsIDOMAttr *newAttr, nsIDOMAttr **_retval) { ret urn _to SetAttributeNodeNS(newAttr, _retval); } \
123 NS_IMETHOD GetElementsByTagNameNS(const nsAString & namespaceURI, const nsAStr ing & localName, nsIDOMNodeList **_retval) { return _to GetElementsByTagNameNS(n amespaceURI, localName, _retval); } \
124 NS_IMETHOD HasAttribute(const nsAString & name, PRBool *_retval) { return _to HasAttribute(name, _retval); } \
125 NS_IMETHOD HasAttributeNS(const nsAString & namespaceURI, const nsAString & lo calName, PRBool *_retval) { return _to HasAttributeNS(namespaceURI, localName, _ retval); }
126
127 /* Use this macro to declare functions that forward the behavior of this interfa ce to another object in a safe way. */
128 #define NS_FORWARD_SAFE_NSIDOMELEMENT(_to) \
129 NS_IMETHOD GetTagName(nsAString & aTagName) { return !_to ? NS_ERROR_NULL_POIN TER : _to->GetTagName(aTagName); } \
130 NS_IMETHOD GetAttribute(const nsAString & name, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAttribute(name, _retval); } \
131 NS_IMETHOD SetAttribute(const nsAString & name, const nsAString & value) { ret urn !_to ? NS_ERROR_NULL_POINTER : _to->SetAttribute(name, value); } \
132 NS_IMETHOD RemoveAttribute(const nsAString & name) { return !_to ? NS_ERROR_NU LL_POINTER : _to->RemoveAttribute(name); } \
133 NS_IMETHOD GetAttributeNode(const nsAString & name, nsIDOMAttr **_retval) { re turn !_to ? NS_ERROR_NULL_POINTER : _to->GetAttributeNode(name, _retval); } \
134 NS_IMETHOD SetAttributeNode(nsIDOMAttr *newAttr, nsIDOMAttr **_retval) { retur n !_to ? NS_ERROR_NULL_POINTER : _to->SetAttributeNode(newAttr, _retval); } \
135 NS_IMETHOD RemoveAttributeNode(nsIDOMAttr *oldAttr, nsIDOMAttr **_retval) { re turn !_to ? NS_ERROR_NULL_POINTER : _to->RemoveAttributeNode(oldAttr, _retval); } \
136 NS_IMETHOD GetElementsByTagName(const nsAString & name, nsIDOMNodeList **_retv al) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetElementsByTagName(name, _ret val); } \
137 NS_IMETHOD GetAttributeNS(const nsAString & namespaceURI, const nsAString & lo calName, nsAString & _retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAt tributeNS(namespaceURI, localName, _retval); } \
138 NS_IMETHOD SetAttributeNS(const nsAString & namespaceURI, const nsAString & qu alifiedName, const nsAString & value) { return !_to ? NS_ERROR_NULL_POINTER : _t o->SetAttributeNS(namespaceURI, qualifiedName, value); } \
139 NS_IMETHOD RemoveAttributeNS(const nsAString & namespaceURI, const nsAString & localName) { return !_to ? NS_ERROR_NULL_POINTER : _to->RemoveAttributeNS(names paceURI, localName); } \
140 NS_IMETHOD GetAttributeNodeNS(const nsAString & namespaceURI, const nsAString & localName, nsIDOMAttr **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to-> GetAttributeNodeNS(namespaceURI, localName, _retval); } \
141 NS_IMETHOD SetAttributeNodeNS(nsIDOMAttr *newAttr, nsIDOMAttr **_retval) { ret urn !_to ? NS_ERROR_NULL_POINTER : _to->SetAttributeNodeNS(newAttr, _retval); } \
142 NS_IMETHOD GetElementsByTagNameNS(const nsAString & namespaceURI, const nsAStr ing & localName, nsIDOMNodeList **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetElementsByTagNameNS(namespaceURI, localName, _retval); } \
143 NS_IMETHOD HasAttribute(const nsAString & name, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->HasAttribute(name, _retval); } \
144 NS_IMETHOD HasAttributeNS(const nsAString & namespaceURI, const nsAString & lo calName, PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->HasAttrib uteNS(namespaceURI, localName, _retval); }
145
146 #if 0
147 /* Use the code below as a template for the implementation class for this interf ace. */
148
149 /* Header file */
150 class nsDOMElement : public nsIDOMElement
151 {
152 public:
153 NS_DECL_ISUPPORTS
154 NS_DECL_NSIDOMELEMENT
155
156 nsDOMElement();
157
158 private:
159 ~nsDOMElement();
160
161 protected:
162 /* additional members */
163 };
164
165 /* Implementation file */
166 NS_IMPL_ISUPPORTS1(nsDOMElement, nsIDOMElement)
167
168 nsDOMElement::nsDOMElement()
169 {
170 /* member initializers and constructor code */
171 }
172
173 nsDOMElement::~nsDOMElement()
174 {
175 /* destructor code */
176 }
177
178 /* readonly attribute DOMString tagName; */
179 NS_IMETHODIMP nsDOMElement::GetTagName(nsAString & aTagName)
180 {
181 return NS_ERROR_NOT_IMPLEMENTED;
182 }
183
184 /* DOMString getAttribute (in DOMString name); */
185 NS_IMETHODIMP nsDOMElement::GetAttribute(const nsAString & name, nsAString & _re tval)
186 {
187 return NS_ERROR_NOT_IMPLEMENTED;
188 }
189
190 /* void setAttribute (in DOMString name, in DOMString value) raises (DOMExcepti on); */
191 NS_IMETHODIMP nsDOMElement::SetAttribute(const nsAString & name, const nsAString & value)
192 {
193 return NS_ERROR_NOT_IMPLEMENTED;
194 }
195
196 /* void removeAttribute (in DOMString name) raises (DOMException); */
197 NS_IMETHODIMP nsDOMElement::RemoveAttribute(const nsAString & name)
198 {
199 return NS_ERROR_NOT_IMPLEMENTED;
200 }
201
202 /* nsIDOMAttr getAttributeNode (in DOMString name); */
203 NS_IMETHODIMP nsDOMElement::GetAttributeNode(const nsAString & name, nsIDOMAttr **_retval)
204 {
205 return NS_ERROR_NOT_IMPLEMENTED;
206 }
207
208 /* nsIDOMAttr setAttributeNode (in nsIDOMAttr newAttr) raises (DOMException); * /
209 NS_IMETHODIMP nsDOMElement::SetAttributeNode(nsIDOMAttr *newAttr, nsIDOMAttr **_ retval)
210 {
211 return NS_ERROR_NOT_IMPLEMENTED;
212 }
213
214 /* nsIDOMAttr removeAttributeNode (in nsIDOMAttr oldAttr) raises (DOMException) ; */
215 NS_IMETHODIMP nsDOMElement::RemoveAttributeNode(nsIDOMAttr *oldAttr, nsIDOMAttr **_retval)
216 {
217 return NS_ERROR_NOT_IMPLEMENTED;
218 }
219
220 /* nsIDOMNodeList getElementsByTagName (in DOMString name); */
221 NS_IMETHODIMP nsDOMElement::GetElementsByTagName(const nsAString & name, nsIDOMN odeList **_retval)
222 {
223 return NS_ERROR_NOT_IMPLEMENTED;
224 }
225
226 /* DOMString getAttributeNS (in DOMString namespaceURI, in DOMString localName); */
227 NS_IMETHODIMP nsDOMElement::GetAttributeNS(const nsAString & namespaceURI, const nsAString & localName, nsAString & _retval)
228 {
229 return NS_ERROR_NOT_IMPLEMENTED;
230 }
231
232 /* void setAttributeNS (in DOMString namespaceURI, in DOMString qualifiedName, i n DOMString value) raises (DOMException); */
233 NS_IMETHODIMP nsDOMElement::SetAttributeNS(const nsAString & namespaceURI, const nsAString & qualifiedName, const nsAString & value)
234 {
235 return NS_ERROR_NOT_IMPLEMENTED;
236 }
237
238 /* void removeAttributeNS (in DOMString namespaceURI, in DOMString localName) r aises (DOMException); */
239 NS_IMETHODIMP nsDOMElement::RemoveAttributeNS(const nsAString & namespaceURI, co nst nsAString & localName)
240 {
241 return NS_ERROR_NOT_IMPLEMENTED;
242 }
243
244 /* nsIDOMAttr getAttributeNodeNS (in DOMString namespaceURI, in DOMString localN ame); */
245 NS_IMETHODIMP nsDOMElement::GetAttributeNodeNS(const nsAString & namespaceURI, c onst nsAString & localName, nsIDOMAttr **_retval)
246 {
247 return NS_ERROR_NOT_IMPLEMENTED;
248 }
249
250 /* nsIDOMAttr setAttributeNodeNS (in nsIDOMAttr newAttr) raises (DOMException); */
251 NS_IMETHODIMP nsDOMElement::SetAttributeNodeNS(nsIDOMAttr *newAttr, nsIDOMAttr * *_retval)
252 {
253 return NS_ERROR_NOT_IMPLEMENTED;
254 }
255
256 /* nsIDOMNodeList getElementsByTagNameNS (in DOMString namespaceURI, in DOMStrin g localName); */
257 NS_IMETHODIMP nsDOMElement::GetElementsByTagNameNS(const nsAString & namespaceUR I, const nsAString & localName, nsIDOMNodeList **_retval)
258 {
259 return NS_ERROR_NOT_IMPLEMENTED;
260 }
261
262 /* boolean hasAttribute (in DOMString name); */
263 NS_IMETHODIMP nsDOMElement::HasAttribute(const nsAString & name, PRBool *_retval )
264 {
265 return NS_ERROR_NOT_IMPLEMENTED;
266 }
267
268 /* boolean hasAttributeNS (in DOMString namespaceURI, in DOMString localName); * /
269 NS_IMETHODIMP nsDOMElement::HasAttributeNS(const nsAString & namespaceURI, const nsAString & localName, PRBool *_retval)
270 {
271 return NS_ERROR_NOT_IMPLEMENTED;
272 }
273
274 /* End of implementation class template. */
275 #endif
276
277
278 #endif /* __gen_nsIDOMElement_h__ */
OLDNEW
« no previous file with comments | « gecko-sdk/include/nsIDOMDocumentView.h ('k') | gecko-sdk/include/nsIDOMElementCSSInlineStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698