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

Side by Side Diff: gecko-sdk/include/nsIDOMHTMLTableCaptionElem.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
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/html/nsIDOMHTMLTableCaptionElem .idl
3 */
4
5 #ifndef __gen_nsIDOMHTMLTableCaptionElem_h__
6 #define __gen_nsIDOMHTMLTableCaptionElem_h__
7
8
9 #ifndef __gen_nsIDOMHTMLElement_h__
10 #include "nsIDOMHTMLElement.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: nsIDOMHTMLTableCaptionElement */
19 #define NS_IDOMHTMLTABLECAPTIONELEMENT_IID_STR "a6cf90b3-15b3-11d2-932e-00805f8a dd32"
20
21 #define NS_IDOMHTMLTABLECAPTIONELEMENT_IID \
22 {0xa6cf90b3, 0x15b3, 0x11d2, \
23 { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
24
25 class NS_NO_VTABLE nsIDOMHTMLTableCaptionElement : public nsIDOMHTMLElement {
26 public:
27
28 NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOMHTMLTABLECAPTIONELEMENT_IID)
29
30 /**
31 * The nsIDOMHTMLTableCaptionElement interface is the interface to a
32 * [X]HTML caption element.
33 *
34 * For more information on this interface please see
35 * http://www.w3.org/TR/DOM-Level-2-HTML/
36 *
37 * @status FROZEN
38 */
39 /* attribute DOMString align; */
40 NS_IMETHOD GetAlign(nsAString & aAlign) = 0;
41 NS_IMETHOD SetAlign(const nsAString & aAlign) = 0;
42
43 };
44
45 /* Use this macro when declaring classes that implement this interface. */
46 #define NS_DECL_NSIDOMHTMLTABLECAPTIONELEMENT \
47 NS_IMETHOD GetAlign(nsAString & aAlign); \
48 NS_IMETHOD SetAlign(const nsAString & aAlign);
49
50 /* Use this macro to declare functions that forward the behavior of this interfa ce to another object. */
51 #define NS_FORWARD_NSIDOMHTMLTABLECAPTIONELEMENT(_to) \
52 NS_IMETHOD GetAlign(nsAString & aAlign) { return _to GetAlign(aAlign); } \
53 NS_IMETHOD SetAlign(const nsAString & aAlign) { return _to SetAlign(aAlign); }
54
55 /* Use this macro to declare functions that forward the behavior of this interfa ce to another object in a safe way. */
56 #define NS_FORWARD_SAFE_NSIDOMHTMLTABLECAPTIONELEMENT(_to) \
57 NS_IMETHOD GetAlign(nsAString & aAlign) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAlign(aAlign); } \
58 NS_IMETHOD SetAlign(const nsAString & aAlign) { return !_to ? NS_ERROR_NULL_PO INTER : _to->SetAlign(aAlign); }
59
60 #if 0
61 /* Use the code below as a template for the implementation class for this interf ace. */
62
63 /* Header file */
64 class nsDOMHTMLTableCaptionElement : public nsIDOMHTMLTableCaptionElement
65 {
66 public:
67 NS_DECL_ISUPPORTS
68 NS_DECL_NSIDOMHTMLTABLECAPTIONELEMENT
69
70 nsDOMHTMLTableCaptionElement();
71
72 private:
73 ~nsDOMHTMLTableCaptionElement();
74
75 protected:
76 /* additional members */
77 };
78
79 /* Implementation file */
80 NS_IMPL_ISUPPORTS1(nsDOMHTMLTableCaptionElement, nsIDOMHTMLTableCaptionElement)
81
82 nsDOMHTMLTableCaptionElement::nsDOMHTMLTableCaptionElement()
83 {
84 /* member initializers and constructor code */
85 }
86
87 nsDOMHTMLTableCaptionElement::~nsDOMHTMLTableCaptionElement()
88 {
89 /* destructor code */
90 }
91
92 /* attribute DOMString align; */
93 NS_IMETHODIMP nsDOMHTMLTableCaptionElement::GetAlign(nsAString & aAlign)
94 {
95 return NS_ERROR_NOT_IMPLEMENTED;
96 }
97 NS_IMETHODIMP nsDOMHTMLTableCaptionElement::SetAlign(const nsAString & aAlign)
98 {
99 return NS_ERROR_NOT_IMPLEMENTED;
100 }
101
102 /* End of implementation class template. */
103 #endif
104
105
106 #endif /* __gen_nsIDOMHTMLTableCaptionElem_h__ */
OLDNEW
« no previous file with comments | « gecko-sdk/include/nsIDOMHTMLStyleElement.h ('k') | gecko-sdk/include/nsIDOMHTMLTableCellElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698