summaryrefslogtreecommitdiff
path: root/libjava/java/awt/ComponentOrientation.h
blob: fe3ef9c17404ef550fc3a30cbd8b9a9bc5c3e19c (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
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __java_awt_ComponentOrientation__
#define __java_awt_ComponentOrientation__

#pragma interface

#include <java/lang/Object.h>
extern "Java"
{
  namespace java
  {
    namespace awt
    {
        class ComponentOrientation;
    }
  }
}

class java::awt::ComponentOrientation : public ::java::lang::Object
{

  ComponentOrientation(jint);
public:
  jboolean isHorizontal();
  jboolean isLeftToRight();
  static ::java::awt::ComponentOrientation * getOrientation(::java::util::Locale *);
  static ::java::awt::ComponentOrientation * getOrientation(::java::util::ResourceBundle *);
private:
  static const jlong serialVersionUID = -4113291392143563828LL;
  static const jint UNKNOWN_ID = 1;
  static const jint HORIZONTAL_ID = 2;
  static const jint LEFT_TO_RIGHT_ID = 4;
public:
  static ::java::awt::ComponentOrientation * LEFT_TO_RIGHT;
  static ::java::awt::ComponentOrientation * RIGHT_TO_LEFT;
  static ::java::awt::ComponentOrientation * UNKNOWN;
private:
  jint __attribute__((aligned(__alignof__( ::java::lang::Object)))) orientation;
public:
  static ::java::lang::Class class$;
};

#endif // __java_awt_ComponentOrientation__