blob: 3706d9d8510bced42d2c64095f0a854beecb916e (
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
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __java_nio_channels_VMChannels__
#define __java_nio_channels_VMChannels__
#pragma interface
#include <java/lang/Object.h>
extern "Java"
{
namespace gnu
{
namespace java
{
namespace nio
{
namespace channels
{
class FileChannelImpl;
}
}
}
}
namespace java
{
namespace nio
{
namespace channels
{
class ReadableByteChannel;
class VMChannels;
class WritableByteChannel;
}
}
}
}
class java::nio::channels::VMChannels : public ::java::lang::Object
{
VMChannels();
public: // actually package-private
static ::java::io::FileInputStream * newInputStream(::gnu::java::nio::channels::FileChannelImpl *);
static ::java::io::FileOutputStream * newOutputStream(::gnu::java::nio::channels::FileChannelImpl *);
static ::java::io::InputStream * newInputStream(::java::nio::channels::ReadableByteChannel *);
static ::java::io::OutputStream * newOutputStream(::java::nio::channels::WritableByteChannel *);
public:
static ::java::lang::Class class$;
};
#endif // __java_nio_channels_VMChannels__
|