1 : /*
2 : * DO NOT EDIT. THIS FILE IS GENERATED FROM /builds/slave/m-beta-lnx-codecoverage/build/dom/interfaces/css/nsIDOMCSSStyleRule.idl
3 : */
4 :
5 : #ifndef __gen_nsIDOMCSSStyleRule_h__
6 : #define __gen_nsIDOMCSSStyleRule_h__
7 :
8 :
9 : #ifndef __gen_nsIDOMCSSRule_h__
10 : #include "nsIDOMCSSRule.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: nsIDOMCSSStyleRule */
19 : #define NS_IDOMCSSSTYLERULE_IID_STR "a6cf90bf-15b3-11d2-932e-00805f8add32"
20 :
21 : #define NS_IDOMCSSSTYLERULE_IID \
22 : {0xa6cf90bf, 0x15b3, 0x11d2, \
23 : { 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 }}
24 :
25 0 : class NS_NO_VTABLE NS_SCRIPTABLE nsIDOMCSSStyleRule : public nsIDOMCSSRule {
26 : public:
27 :
28 : NS_DECLARE_STATIC_IID_ACCESSOR(NS_IDOMCSSSTYLERULE_IID)
29 :
30 : /* attribute DOMString selectorText; */
31 : NS_SCRIPTABLE NS_IMETHOD GetSelectorText(nsAString & aSelectorText) = 0;
32 : NS_SCRIPTABLE NS_IMETHOD SetSelectorText(const nsAString & aSelectorText) = 0;
33 :
34 : /* readonly attribute nsIDOMCSSStyleDeclaration style; */
35 : NS_SCRIPTABLE NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration * *aStyle) = 0;
36 :
37 : };
38 :
39 : NS_DEFINE_STATIC_IID_ACCESSOR(nsIDOMCSSStyleRule, NS_IDOMCSSSTYLERULE_IID)
40 :
41 : /* Use this macro when declaring classes that implement this interface. */
42 : #define NS_DECL_NSIDOMCSSSTYLERULE \
43 : NS_SCRIPTABLE NS_IMETHOD GetSelectorText(nsAString & aSelectorText); \
44 : NS_SCRIPTABLE NS_IMETHOD SetSelectorText(const nsAString & aSelectorText); \
45 : NS_SCRIPTABLE NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration * *aStyle);
46 :
47 : /* Use this macro to declare functions that forward the behavior of this interface to another object. */
48 : #define NS_FORWARD_NSIDOMCSSSTYLERULE(_to) \
49 : NS_SCRIPTABLE NS_IMETHOD GetSelectorText(nsAString & aSelectorText) { return _to GetSelectorText(aSelectorText); } \
50 : NS_SCRIPTABLE NS_IMETHOD SetSelectorText(const nsAString & aSelectorText) { return _to SetSelectorText(aSelectorText); } \
51 : NS_SCRIPTABLE NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration * *aStyle) { return _to GetStyle(aStyle); }
52 :
53 : /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
54 : #define NS_FORWARD_SAFE_NSIDOMCSSSTYLERULE(_to) \
55 : NS_SCRIPTABLE NS_IMETHOD GetSelectorText(nsAString & aSelectorText) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelectorText(aSelectorText); } \
56 : NS_SCRIPTABLE NS_IMETHOD SetSelectorText(const nsAString & aSelectorText) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelectorText(aSelectorText); } \
57 : NS_SCRIPTABLE NS_IMETHOD GetStyle(nsIDOMCSSStyleDeclaration * *aStyle) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetStyle(aStyle); }
58 :
59 : #if 0
60 : /* Use the code below as a template for the implementation class for this interface. */
61 :
62 : /* Header file */
63 : class nsDOMCSSStyleRule : public nsIDOMCSSStyleRule
64 : {
65 : public:
66 : NS_DECL_ISUPPORTS
67 : NS_DECL_NSIDOMCSSSTYLERULE
68 :
69 : nsDOMCSSStyleRule();
70 :
71 : private:
72 : ~nsDOMCSSStyleRule();
73 :
74 : protected:
75 : /* additional members */
76 : };
77 :
78 : /* Implementation file */
79 : NS_IMPL_ISUPPORTS1(nsDOMCSSStyleRule, nsIDOMCSSStyleRule)
80 :
81 : nsDOMCSSStyleRule::nsDOMCSSStyleRule()
82 : {
83 : /* member initializers and constructor code */
84 : }
85 :
86 : nsDOMCSSStyleRule::~nsDOMCSSStyleRule()
87 : {
88 : /* destructor code */
89 : }
90 :
91 : /* attribute DOMString selectorText; */
92 : NS_IMETHODIMP nsDOMCSSStyleRule::GetSelectorText(nsAString & aSelectorText)
93 : {
94 : return NS_ERROR_NOT_IMPLEMENTED;
95 : }
96 : NS_IMETHODIMP nsDOMCSSStyleRule::SetSelectorText(const nsAString & aSelectorText)
97 : {
98 : return NS_ERROR_NOT_IMPLEMENTED;
99 : }
100 :
101 : /* readonly attribute nsIDOMCSSStyleDeclaration style; */
102 : NS_IMETHODIMP nsDOMCSSStyleRule::GetStyle(nsIDOMCSSStyleDeclaration * *aStyle)
103 : {
104 : return NS_ERROR_NOT_IMPLEMENTED;
105 : }
106 :
107 : /* End of implementation class template. */
108 : #endif
109 :
110 :
111 : #endif /* __gen_nsIDOMCSSStyleRule_h__ */
|