diff options
| author | Jing Yu <jingyu@google.com> | 2011-12-19 16:56:54 -0800 |
|---|---|---|
| committer | Jing Yu <jingyu@google.com> | 2011-12-19 16:56:54 -0800 |
| commit | 40d7cd0fd78fe2004e2a53c4618c148339b02733 (patch) | |
| tree | 5874557a6c86a1f564a03e5f28b266e31bc3759c /gcc-4.6/libjava/org/w3c/dom/stylesheets | |
| parent | fe2afdf3f3701489c05d2a7509752d6f0c7616f7 (diff) | |
| download | toolchain_gcc-40d7cd0fd78fe2004e2a53c4618c148339b02733.tar.gz toolchain_gcc-40d7cd0fd78fe2004e2a53c4618c148339b02733.tar.bz2 toolchain_gcc-40d7cd0fd78fe2004e2a53c4618c148339b02733.zip | |
Add gcc-4.6. Synced to @180989
Change-Id: Ie3676586e1d8e3c8cd9f07d022f450d05fa08439
svn://gcc.gnu.org/svn/gcc/branches/google/gcc-4_6-mobile
Diffstat (limited to 'gcc-4.6/libjava/org/w3c/dom/stylesheets')
5 files changed, 193 insertions, 0 deletions
diff --git a/gcc-4.6/libjava/org/w3c/dom/stylesheets/DocumentStyle.h b/gcc-4.6/libjava/org/w3c/dom/stylesheets/DocumentStyle.h new file mode 100644 index 000000000..f758d8647 --- /dev/null +++ b/gcc-4.6/libjava/org/w3c/dom/stylesheets/DocumentStyle.h @@ -0,0 +1,36 @@ + +// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- + +#ifndef __org_w3c_dom_stylesheets_DocumentStyle__ +#define __org_w3c_dom_stylesheets_DocumentStyle__ + +#pragma interface + +#include <java/lang/Object.h> +extern "Java" +{ + namespace org + { + namespace w3c + { + namespace dom + { + namespace stylesheets + { + class DocumentStyle; + class StyleSheetList; + } + } + } + } +} + +class org::w3c::dom::stylesheets::DocumentStyle : public ::java::lang::Object +{ + +public: + virtual ::org::w3c::dom::stylesheets::StyleSheetList * getStyleSheets() = 0; + static ::java::lang::Class class$; +} __attribute__ ((java_interface)); + +#endif // __org_w3c_dom_stylesheets_DocumentStyle__ diff --git a/gcc-4.6/libjava/org/w3c/dom/stylesheets/LinkStyle.h b/gcc-4.6/libjava/org/w3c/dom/stylesheets/LinkStyle.h new file mode 100644 index 000000000..f18a57a35 --- /dev/null +++ b/gcc-4.6/libjava/org/w3c/dom/stylesheets/LinkStyle.h @@ -0,0 +1,36 @@ + +// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- + +#ifndef __org_w3c_dom_stylesheets_LinkStyle__ +#define __org_w3c_dom_stylesheets_LinkStyle__ + +#pragma interface + +#include <java/lang/Object.h> +extern "Java" +{ + namespace org + { + namespace w3c + { + namespace dom + { + namespace stylesheets + { + class LinkStyle; + class StyleSheet; + } + } + } + } +} + +class org::w3c::dom::stylesheets::LinkStyle : public ::java::lang::Object +{ + +public: + virtual ::org::w3c::dom::stylesheets::StyleSheet * getSheet() = 0; + static ::java::lang::Class class$; +} __attribute__ ((java_interface)); + +#endif // __org_w3c_dom_stylesheets_LinkStyle__ diff --git a/gcc-4.6/libjava/org/w3c/dom/stylesheets/MediaList.h b/gcc-4.6/libjava/org/w3c/dom/stylesheets/MediaList.h new file mode 100644 index 000000000..92d2130aa --- /dev/null +++ b/gcc-4.6/libjava/org/w3c/dom/stylesheets/MediaList.h @@ -0,0 +1,40 @@ + +// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- + +#ifndef __org_w3c_dom_stylesheets_MediaList__ +#define __org_w3c_dom_stylesheets_MediaList__ + +#pragma interface + +#include <java/lang/Object.h> +extern "Java" +{ + namespace org + { + namespace w3c + { + namespace dom + { + namespace stylesheets + { + class MediaList; + } + } + } + } +} + +class org::w3c::dom::stylesheets::MediaList : public ::java::lang::Object +{ + +public: + virtual ::java::lang::String * getMediaText() = 0; + virtual void setMediaText(::java::lang::String *) = 0; + virtual jint getLength() = 0; + virtual ::java::lang::String * item(jint) = 0; + virtual void deleteMedium(::java::lang::String *) = 0; + virtual void appendMedium(::java::lang::String *) = 0; + static ::java::lang::Class class$; +} __attribute__ ((java_interface)); + +#endif // __org_w3c_dom_stylesheets_MediaList__ diff --git a/gcc-4.6/libjava/org/w3c/dom/stylesheets/StyleSheet.h b/gcc-4.6/libjava/org/w3c/dom/stylesheets/StyleSheet.h new file mode 100644 index 000000000..7a8a97012 --- /dev/null +++ b/gcc-4.6/libjava/org/w3c/dom/stylesheets/StyleSheet.h @@ -0,0 +1,44 @@ + +// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- + +#ifndef __org_w3c_dom_stylesheets_StyleSheet__ +#define __org_w3c_dom_stylesheets_StyleSheet__ + +#pragma interface + +#include <java/lang/Object.h> +extern "Java" +{ + namespace org + { + namespace w3c + { + namespace dom + { + class Node; + namespace stylesheets + { + class MediaList; + class StyleSheet; + } + } + } + } +} + +class org::w3c::dom::stylesheets::StyleSheet : public ::java::lang::Object +{ + +public: + virtual ::java::lang::String * getType() = 0; + virtual jboolean getDisabled() = 0; + virtual void setDisabled(jboolean) = 0; + virtual ::org::w3c::dom::Node * getOwnerNode() = 0; + virtual ::org::w3c::dom::stylesheets::StyleSheet * getParentStyleSheet() = 0; + virtual ::java::lang::String * getHref() = 0; + virtual ::java::lang::String * getTitle() = 0; + virtual ::org::w3c::dom::stylesheets::MediaList * getMedia() = 0; + static ::java::lang::Class class$; +} __attribute__ ((java_interface)); + +#endif // __org_w3c_dom_stylesheets_StyleSheet__ diff --git a/gcc-4.6/libjava/org/w3c/dom/stylesheets/StyleSheetList.h b/gcc-4.6/libjava/org/w3c/dom/stylesheets/StyleSheetList.h new file mode 100644 index 000000000..4e6cb06cb --- /dev/null +++ b/gcc-4.6/libjava/org/w3c/dom/stylesheets/StyleSheetList.h @@ -0,0 +1,37 @@ + +// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- + +#ifndef __org_w3c_dom_stylesheets_StyleSheetList__ +#define __org_w3c_dom_stylesheets_StyleSheetList__ + +#pragma interface + +#include <java/lang/Object.h> +extern "Java" +{ + namespace org + { + namespace w3c + { + namespace dom + { + namespace stylesheets + { + class StyleSheet; + class StyleSheetList; + } + } + } + } +} + +class org::w3c::dom::stylesheets::StyleSheetList : public ::java::lang::Object +{ + +public: + virtual jint getLength() = 0; + virtual ::org::w3c::dom::stylesheets::StyleSheet * item(jint) = 0; + static ::java::lang::Class class$; +} __attribute__ ((java_interface)); + +#endif // __org_w3c_dom_stylesheets_StyleSheetList__ |
