Repository URL to install this package:
|
Version:
7.7.1 ▾
|
#ifndef org_apache_lucene_facet_taxonomy_writercache_TaxonomyWriterCache_H
#define org_apache_lucene_facet_taxonomy_writercache_TaxonomyWriterCache_H
#include "java/lang/Object.h"
namespace java {
namespace lang {
class Class;
}
}
namespace org {
namespace apache {
namespace lucene {
namespace facet {
namespace taxonomy {
class FacetLabel;
}
}
}
}
}
template<class T> class JArray;
namespace org {
namespace apache {
namespace lucene {
namespace facet {
namespace taxonomy {
namespace writercache {
class TaxonomyWriterCache : public ::java::lang::Object {
public:
enum {
mid_clear_d7775b228e076e62,
mid_close_d7775b228e076e62,
mid_get_c1bae6e62b0edcdf,
mid_isFull_c20c2fcd6b89d9a9,
mid_put_485002b28271f0ca,
mid_size_9135e6328d9d7dfd,
max_mid
};
static ::java::lang::Class *class$;
static jmethodID *mids$;
static bool live$;
static jclass initializeClass(bool);
explicit TaxonomyWriterCache(jobject obj) : ::java::lang::Object(obj) {
if (obj != NULL && mids$ == NULL)
env->getClass(initializeClass);
}
TaxonomyWriterCache(const TaxonomyWriterCache& obj) : ::java::lang::Object(obj) {}
void clear() const;
void close() const;
jint get(const ::org::apache::lucene::facet::taxonomy::FacetLabel &) const;
jboolean isFull() const;
jboolean put(const ::org::apache::lucene::facet::taxonomy::FacetLabel &, jint) const;
jint size() const;
};
}
}
}
}
}
}
#include <Python.h>
namespace org {
namespace apache {
namespace lucene {
namespace facet {
namespace taxonomy {
namespace writercache {
extern PyType_Def PY_TYPE_DEF(TaxonomyWriterCache);
extern PyTypeObject *PY_TYPE(TaxonomyWriterCache);
class t_TaxonomyWriterCache {
public:
PyObject_HEAD
TaxonomyWriterCache object;
static PyObject *wrap_Object(const TaxonomyWriterCache&);
static PyObject *wrap_jobject(const jobject&);
static void install(PyObject *module);
static void initialize(PyObject *module);
};
}
}
}
}
}
}
#endif