diff options
author | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
---|---|---|
committer | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
commit | 554fd8c5195424bdbcabf5de30fdc183aba391bd (patch) | |
tree | 976dc5ab7fddf506dadce60ae936f43f58787092 /libjava/org/w3c/dom/stylesheets | |
download | cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2 cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz |
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig;
imported gcc-4.6.4 source tree from verified upstream tarball.
downloading a git-generated archive based on the 'upstream' tag
should provide you with a source tree that is binary identical
to the one extracted from the above tarball.
if you have obtained the source via the command 'git clone',
however, do note that line-endings of files in your working
directory might differ from line-endings of the respective
files in the upstream repository.
Diffstat (limited to 'libjava/org/w3c/dom/stylesheets')
-rw-r--r-- | libjava/org/w3c/dom/stylesheets/DocumentStyle.h | 36 | ||||
-rw-r--r-- | libjava/org/w3c/dom/stylesheets/LinkStyle.h | 36 | ||||
-rw-r--r-- | libjava/org/w3c/dom/stylesheets/MediaList.h | 40 | ||||
-rw-r--r-- | libjava/org/w3c/dom/stylesheets/StyleSheet.h | 44 | ||||
-rw-r--r-- | libjava/org/w3c/dom/stylesheets/StyleSheetList.h | 37 |
5 files changed, 193 insertions, 0 deletions
diff --git a/libjava/org/w3c/dom/stylesheets/DocumentStyle.h b/libjava/org/w3c/dom/stylesheets/DocumentStyle.h new file mode 100644 index 000000000..f758d8647 --- /dev/null +++ b/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/libjava/org/w3c/dom/stylesheets/LinkStyle.h b/libjava/org/w3c/dom/stylesheets/LinkStyle.h new file mode 100644 index 000000000..f18a57a35 --- /dev/null +++ b/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/libjava/org/w3c/dom/stylesheets/MediaList.h b/libjava/org/w3c/dom/stylesheets/MediaList.h new file mode 100644 index 000000000..92d2130aa --- /dev/null +++ b/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/libjava/org/w3c/dom/stylesheets/StyleSheet.h b/libjava/org/w3c/dom/stylesheets/StyleSheet.h new file mode 100644 index 000000000..7a8a97012 --- /dev/null +++ b/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/libjava/org/w3c/dom/stylesheets/StyleSheetList.h b/libjava/org/w3c/dom/stylesheets/StyleSheetList.h new file mode 100644 index 000000000..4e6cb06cb --- /dev/null +++ b/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__ |