1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 02:39:23 +02:00

Constructor class

This commit is contained in:
Nikolay Pultsin 2012-03-30 21:04:30 +01:00
parent 3f2836844e
commit 4f6ef22b33
5 changed files with 48 additions and 26 deletions

View file

@ -28,6 +28,7 @@
#include <shared_ptr.h>
class JavaClass;
class Constructor;
class VoidMethod;
class IntMethod;
class LongMethod;
@ -51,8 +52,8 @@ public:
static const char * const Class_java_io_InputStream;
static const char * const Class_ZLibrary;
static const char * const Class_ZLFile;
static const char * const Class_ZLFileImage;
static const char * const Class_NativeFormatPlugin;
static shared_ptr<JavaClass> Class_ZLFileImage;
static shared_ptr<JavaClass> Class_NativeFormatPlugin;
static const char * const Class_PluginCollection;
static const char * const Class_Encoding;
static const char * const Class_EncodingConverter;
@ -86,9 +87,9 @@ public:
static shared_ptr<BooleanMethod> Method_ZLFile_isDirectory;
static shared_ptr<LongMethod> Method_ZLFile_size;
static jmethodID MID_ZLFileImage_init;
static shared_ptr<Constructor> Constructor_ZLFileImage;
static jmethodID MID_NativeFormatPlugin_init;
static shared_ptr<Constructor> Constructor_NativeFormatPlugin;
static shared_ptr<StringMethod> Method_NativeFormatPlugin_supportedFileType;
static shared_ptr<StaticObjectMethod> StaticMethod_PluginCollection_Instance;