mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
48 lines
1.1 KiB
C++
48 lines
1.1 KiB
C++
|
|
// 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__
|