natVMProxy.cc (run_proxy): Use _Jv_LookupProxyMethod to find the Method.
[gcc.git] / libjava / java / awt / Image.h
1
2 // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
4 #ifndef __java_awt_Image__
5 #define __java_awt_Image__
6
7 #pragma interface
8
9 #include <java/lang/Object.h>
10 extern "Java"
11 {
12 namespace java
13 {
14 namespace awt
15 {
16 class Graphics;
17 class Image;
18 namespace image
19 {
20 class ImageObserver;
21 class ImageProducer;
22 }
23 }
24 }
25 }
26
27 class java::awt::Image : public ::java::lang::Object
28 {
29
30 public:
31 Image();
32 virtual jint getWidth(::java::awt::image::ImageObserver *) = 0;
33 virtual jint getHeight(::java::awt::image::ImageObserver *) = 0;
34 virtual ::java::awt::image::ImageProducer * getSource() = 0;
35 virtual ::java::awt::Graphics * getGraphics() = 0;
36 virtual ::java::lang::Object * getProperty(::java::lang::String *, ::java::awt::image::ImageObserver *) = 0;
37 virtual ::java::awt::Image * getScaledInstance(jint, jint, jint);
38 virtual void flush() = 0;
39 virtual void setAccelerationPriority(jfloat);
40 virtual jfloat getAccelerationPriority();
41 static ::java::lang::Object * UndefinedProperty;
42 static const jint SCALE_DEFAULT = 1;
43 static const jint SCALE_FAST = 2;
44 static const jint SCALE_SMOOTH = 4;
45 static const jint SCALE_REPLICATE = 8;
46 static const jint SCALE_AREA_AVERAGING = 16;
47 public: // actually protected
48 jfloat __attribute__((aligned(__alignof__( ::java::lang::Object)))) accelerationPriority;
49 public:
50 static ::java::lang::Class class$;
51 };
52
53 #endif // __java_awt_Image__