summaryrefslogtreecommitdiff
path: root/libjava/javax/swing/text/EditorKit.h
blob: eaeef504294fa2e76a8695397d930fd9568cd17b (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
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-

#ifndef __javax_swing_text_EditorKit__
#define __javax_swing_text_EditorKit__

#pragma interface

#include <java/lang/Object.h>
#include <gcj/array.h>

extern "Java"
{
  namespace javax
  {
    namespace swing
    {
        class Action;
        class JEditorPane;
      namespace text
      {
          class Caret;
          class Document;
          class EditorKit;
          class ViewFactory;
      }
    }
  }
}

class javax::swing::text::EditorKit : public ::java::lang::Object
{

public:
  EditorKit();
  virtual ::java::lang::Object * clone();
  virtual void deinstall(::javax::swing::JEditorPane *);
  virtual void install(::javax::swing::JEditorPane *);
  virtual ::javax::swing::text::Caret * createCaret() = 0;
  virtual ::javax::swing::text::Document * createDefaultDocument() = 0;
  virtual JArray< ::javax::swing::Action * > * getActions() = 0;
  virtual ::java::lang::String * getContentType() = 0;
  virtual ::javax::swing::text::ViewFactory * getViewFactory() = 0;
  virtual void read(::java::io::InputStream *, ::javax::swing::text::Document *, jint) = 0;
  virtual void read(::java::io::Reader *, ::javax::swing::text::Document *, jint) = 0;
  virtual void write(::java::io::OutputStream *, ::javax::swing::text::Document *, jint, jint) = 0;
  virtual void write(::java::io::Writer *, ::javax::swing::text::Document *, jint, jint) = 0;
private:
  static const jlong serialVersionUID = -5044124649345887822LL;
public:
  static ::java::lang::Class class$;
};

#endif // __javax_swing_text_EditorKit__