summaryrefslogtreecommitdiff
path: root/libjava/org/w3c/dom/css/CSSPrimitiveValue.h
blob: ea502e30af9314b03f92d1d28c1e648533d03e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
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__