summaryrefslogtreecommitdiff
path: root/libjava/org/w3c/dom/css/CSSPrimitiveValue.h
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /libjava/org/w3c/dom/css/CSSPrimitiveValue.h
downloadcbb-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/css/CSSPrimitiveValue.h')
-rw-r--r--libjava/org/w3c/dom/css/CSSPrimitiveValue.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/libjava/org/w3c/dom/css/CSSPrimitiveValue.h b/libjava/org/w3c/dom/css/CSSPrimitiveValue.h
new file mode 100644
index 000000000..ea502e30a
--- /dev/null
+++ b/libjava/org/w3c/dom/css/CSSPrimitiveValue.h
@@ -0,0 +1,74 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __org_w3c_dom_css_CSSPrimitiveValue__
+#define __org_w3c_dom_css_CSSPrimitiveValue__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+ namespace org
+ {
+ namespace w3c
+ {
+ namespace dom
+ {
+ namespace css
+ {
+ class CSSPrimitiveValue;
+ class Counter;
+ class RGBColor;
+ class Rect;
+ }
+ }
+ }
+ }
+}
+
+class org::w3c::dom::css::CSSPrimitiveValue : public ::java::lang::Object
+{
+
+public:
+ virtual jshort getPrimitiveType() = 0;
+ virtual void setFloatValue(jshort, jfloat) = 0;
+ virtual jfloat getFloatValue(jshort) = 0;
+ virtual void setStringValue(jshort, ::java::lang::String *) = 0;
+ virtual ::java::lang::String * getStringValue() = 0;
+ virtual ::org::w3c::dom::css::Counter * getCounterValue() = 0;
+ virtual ::org::w3c::dom::css::Rect * getRectValue() = 0;
+ virtual ::org::w3c::dom::css::RGBColor * getRGBColorValue() = 0;
+ virtual ::java::lang::String * getCssText() = 0;
+ virtual void setCssText(::java::lang::String *) = 0;
+ virtual jshort getCssValueType() = 0;
+ static const jshort CSS_UNKNOWN = 0;
+ static const jshort CSS_NUMBER = 1;
+ static const jshort CSS_PERCENTAGE = 2;
+ static const jshort CSS_EMS = 3;
+ static const jshort CSS_EXS = 4;
+ static const jshort CSS_PX = 5;
+ static const jshort CSS_CM = 6;
+ static const jshort CSS_MM = 7;
+ static const jshort CSS_IN = 8;
+ static const jshort CSS_PT = 9;
+ static const jshort CSS_PC = 10;
+ static const jshort CSS_DEG = 11;
+ static const jshort CSS_RAD = 12;
+ static const jshort CSS_GRAD = 13;
+ static const jshort CSS_MS = 14;
+ static const jshort CSS_S = 15;
+ static const jshort CSS_HZ = 16;
+ static const jshort CSS_KHZ = 17;
+ static const jshort CSS_DIMENSION = 18;
+ static const jshort CSS_STRING = 19;
+ static const jshort CSS_URI = 20;
+ static const jshort CSS_IDENT = 21;
+ static const jshort CSS_ATTR = 22;
+ static const jshort CSS_COUNTER = 23;
+ static const jshort CSS_RECT = 24;
+ static const jshort CSS_RGBCOLOR = 25;
+ static ::java::lang::Class class$;
+} __attribute__ ((java_interface));
+
+#endif // __org_w3c_dom_css_CSSPrimitiveValue__