Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_analysis_hunspell_Dictionary_H
#define org_apache_lucene_analysis_hunspell_Dictionary_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class String;
class Class;
}
namespace util {
class List;
}
namespace nio {
namespace file {
class Path;
}
}
namespace io {
class InputStream;
class IOException;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace store {
class Directory;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace analysis {
namespace hunspell {
class Dictionary : public ::java::lang::Object {
public:
enum {
mid_init$_e1c4aba263317ddb,
mid_init$_ec5429d595a49991,
mid_getIgnoreCase_c20c2fcd6b89d9a9,
mid_setDefaultTempDir_16fa6ab1867eba67,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit Dictionary(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
Dictionary(const Dictionary& obj) : ::java::lang::Object(obj) {}
Dictionary(const ::org::apache::lucene::store::Directory &, const ::java::lang::String &, const ::java::io::InputStream &, const ::java::io::InputStream &);
Dictionary(const ::org::apache::lucene::store::Directory &, const ::java::lang::String &, const ::java::io::InputStream &, const ::java::util::List &, jboolean);
jboolean getIgnoreCase() const;
static void setDefaultTempDir(const ::java::nio::file::Path &);
};
}
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace analysis {
namespace hunspell {
extern PyType_Def PY_TYPE_DEF(Dictionary);
extern PyTypeObject *PY_TYPE(Dictionary);
class t_Dictionary {
public:
PyObject_HEAD
Dictionary object;
static PyObject *wrap_Object(const Dictionary&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
}
#endif