Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_analysis_tokenattributes_KeywordAttributeImpl_H
#define org_apache_lucene_analysis_tokenattributes_KeywordAttributeImpl_H
#include "org/apache/lucene/util/AttributeImpl.h"
namespace java {
namespace lang {
class Class;
class Object;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace util {
class AttributeReflector;
}
namespace analysis {
namespace tokenattributes {
class KeywordAttribute;
}
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace analysis {
namespace tokenattributes {
class KeywordAttributeImpl : public ::org::apache::lucene::util::AttributeImpl {
public:
enum {
mid_init$_d7775b228e076e62,
mid_clear_d7775b228e076e62,
mid_copyTo_07a9e1ed19108670,
mid_equals_ac708f0101821708,
mid_hashCode_9135e6328d9d7dfd,
mid_isKeyword_c20c2fcd6b89d9a9,
mid_reflectWith_612775e8cf974e91,
mid_setKeyword_8a3e0c1a306942cb,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit KeywordAttributeImpl(jobject obj) : ::org::apache::lucene::util::AttributeImpl(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
KeywordAttributeImpl(const KeywordAttributeImpl& obj) : ::org::apache::lucene::util::AttributeImpl(obj) {}
KeywordAttributeImpl();
void clear() const;
void copyTo(const ::org::apache::lucene::util::AttributeImpl &) const;
jboolean equals(const ::java::lang::Object &) const;
jint hashCode() const;
jboolean isKeyword() const;
void reflectWith(const ::org::apache::lucene::util::AttributeReflector &) const;
void setKeyword(jboolean) const;
};
}
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace analysis {
namespace tokenattributes {
extern PyType_Def PY_TYPE_DEF(KeywordAttributeImpl);
extern PyTypeObject *PY_TYPE(KeywordAttributeImpl);
class t_KeywordAttributeImpl {
public:
PyObject_HEAD
KeywordAttributeImpl object;
static PyObject *wrap_Object(const KeywordAttributeImpl&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
}
#endif