Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_util_AttributeImpl_H
#define org_apache_lucene_util_AttributeImpl_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class Class;
class String;
class Cloneable;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace util {
class AttributeImpl;
class Attribute;
class AttributeReflector;
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace util {
class AttributeImpl : public ::java::lang::Object {
public:
enum {
mid_init$_d7775b228e076e62,
mid_clear_d7775b228e076e62,
mid_clone_ef3f648e0ca95603,
mid_copyTo_07a9e1ed19108670,
mid_end_d7775b228e076e62,
mid_reflectAsString_8fbbd7b315ff9437,
mid_reflectWith_612775e8cf974e91,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit AttributeImpl(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
AttributeImpl(const AttributeImpl& obj) : ::java::lang::Object(obj) {}
AttributeImpl();
void clear() const;
AttributeImpl clone() const;
void copyTo(const AttributeImpl &) const;
void end() const;
::java::lang::String reflectAsString(jboolean) const;
void reflectWith(const ::org::apache::lucene::util::AttributeReflector &) const;
};
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace util {
extern PyType_Def PY_TYPE_DEF(AttributeImpl);
extern PyTypeObject *PY_TYPE(AttributeImpl);
class t_AttributeImpl {
public:
PyObject_HEAD
AttributeImpl object;
static PyObject *wrap_Object(const AttributeImpl&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
#endif