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

#ifndef __gnu_java_awt_java2d_TextCacheKey__
#define __gnu_java_awt_java2d_TextCacheKey__

#pragma interface

#include <java/lang/Object.h>
extern "Java"
{
  namespace gnu
  {
    namespace java
    {
      namespace awt
      {
        namespace java2d
        {
            class TextCacheKey;
        }
      }
    }
  }
  namespace java
  {
    namespace awt
    {
        class Font;
      namespace font
      {
          class FontRenderContext;
      }
    }
  }
}

class gnu::java::awt::java2d::TextCacheKey : public ::java::lang::Object
{

public:
  TextCacheKey();
  TextCacheKey(::java::lang::String *, ::java::awt::Font *, ::java::awt::font::FontRenderContext *);
  virtual void setString(::java::lang::String *);
  virtual void setFontRenderContext(::java::awt::font::FontRenderContext *);
  virtual void setFont(::java::awt::Font *);
  virtual jboolean equals(::java::lang::Object *);
  virtual jint hashCode();
private:
  ::java::lang::String * __attribute__((aligned(__alignof__( ::java::lang::Object)))) string;
  ::java::awt::font::FontRenderContext * fontRenderContext;
  ::java::awt::Font * font;
public:
  static ::java::lang::Class class$;
};

#endif // __gnu_java_awt_java2d_TextCacheKey__