diff options
Diffstat (limited to 'libjava/org/w3c/dom/css/CSSRule.h')
-rw-r--r-- | libjava/org/w3c/dom/css/CSSRule.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/libjava/org/w3c/dom/css/CSSRule.h b/libjava/org/w3c/dom/css/CSSRule.h new file mode 100644 index 00000000000..33fc8c121b1 --- /dev/null +++ b/libjava/org/w3c/dom/css/CSSRule.h @@ -0,0 +1,47 @@ + +// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- + +#ifndef __org_w3c_dom_css_CSSRule__ +#define __org_w3c_dom_css_CSSRule__ + +#pragma interface + +#include <java/lang/Object.h> +extern "Java" +{ + namespace org + { + namespace w3c + { + namespace dom + { + namespace css + { + class CSSRule; + class CSSStyleSheet; + } + } + } + } +} + +class org::w3c::dom::css::CSSRule : public ::java::lang::Object +{ + +public: + virtual jshort getType() = 0; + virtual ::java::lang::String * getCssText() = 0; + virtual void setCssText(::java::lang::String *) = 0; + virtual ::org::w3c::dom::css::CSSStyleSheet * getParentStyleSheet() = 0; + virtual ::org::w3c::dom::css::CSSRule * getParentRule() = 0; + static const jshort UNKNOWN_RULE = 0; + static const jshort STYLE_RULE = 1; + static const jshort CHARSET_RULE = 2; + static const jshort IMPORT_RULE = 3; + static const jshort MEDIA_RULE = 4; + static const jshort FONT_FACE_RULE = 5; + static const jshort PAGE_RULE = 6; + static ::java::lang::Class class$; +} __attribute__ ((java_interface)); + +#endif // __org_w3c_dom_css_CSSRule__ |