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

#ifndef __javax_swing_ProgressMonitorInputStream__
#define __javax_swing_ProgressMonitorInputStream__

#pragma interface

#include <java/io/FilterInputStream.h>
#include <gcj/array.h>

extern "Java"
{
  namespace java
  {
    namespace awt
    {
        class Component;
    }
  }
  namespace javax
  {
    namespace swing
    {
        class ProgressMonitor;
        class ProgressMonitorInputStream;
    }
  }
}

class javax::swing::ProgressMonitorInputStream : public ::java::io::FilterInputStream
{

public:
  ProgressMonitorInputStream(::java::awt::Component *, ::java::lang::Object *, ::java::io::InputStream *);
  virtual void reset();
  virtual jint read();
  virtual jint read(JArray< jbyte > *);
  virtual jint read(JArray< jbyte > *, jint, jint);
  virtual jlong skip(jlong);
  virtual void close();
  virtual ::javax::swing::ProgressMonitor * getProgressMonitor();
private:
  void checkMonitorCanceled();
  ::javax::swing::ProgressMonitor * __attribute__((aligned(__alignof__( ::java::io::FilterInputStream)))) monitor;
  jint read__;
public: // actually package-private
  static jboolean $assertionsDisabled;
public:
  static ::java::lang::Class class$;
};

#endif // __javax_swing_ProgressMonitorInputStream__