Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_analysis_StopwordAnalyzerBase_H
#define org_apache_lucene_analysis_StopwordAnalyzerBase_H
#include "org/apache/lucene/analysis/Analyzer.h"
namespace java {
namespace lang {
class Class;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace analysis {
class CharArraySet;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace analysis {
class StopwordAnalyzerBase : public ::org::apache::lucene::analysis::Analyzer {
public:
enum {
mid_getStopwordSet_c8bec98643740d56,
mid_loadStopwordSet_c6e6dea76417a475,
mid_loadStopwordSet_aa1bcf2d4a4425c7,
mid_loadStopwordSet_ddba9649d9b65c32,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit StopwordAnalyzerBase(jobject obj) : ::org::apache::lucene::analysis::Analyzer(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
StopwordAnalyzerBase(const StopwordAnalyzerBase& obj) : ::org::apache::lucene::analysis::Analyzer(obj) {}
::org::apache::lucene::analysis::CharArraySet getStopwordSet() const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace analysis {
extern PyType_Def PY_TYPE_DEF(StopwordAnalyzerBase);
extern PyTypeObject *PY_TYPE(StopwordAnalyzerBase);
class t_StopwordAnalyzerBase {
public:
PyObject_HEAD
StopwordAnalyzerBase object;
static PyObject *wrap_Object(const StopwordAnalyzerBase&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif