Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lucene / include / org / apache / lucene / util / Accountables.h
Size: Mime:
#ifndef org_apache_lucene_util_Accountables_H
#define org_apache_lucene_util_Accountables_H

#include "java/lang/Object.h"

namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace util {
    class Map;
    class Collection;
  }
}
namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        class Accountable;
      }
    }
  }
}
template<class T> class JArray;

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {

        class Accountables : public ::java::lang::Object {
         public:
          enum {
            mid_namedAccountable_7fe672499822fdb5,
            mid_namedAccountable_a886114e93a2b91a,
            mid_namedAccountable_b9dfcaf60cbe0ac2,
            mid_namedAccountables_912ddb997f822199,
            mid_toString_7bb9342047ca9dd2,
            max_mid
          };

          static ::java::lang::Class *class$;
          static jmethodID *mids$;
          static bool live$;
          static jclass initializeClass(bool);

          explicit Accountables(jobject obj) : ::java::lang::Object(obj) {
            if (obj != NULL && mids$ == NULL)
              env->getClass(initializeClass);
          }
          Accountables(const Accountables& obj) : ::java::lang::Object(obj) {}

          static ::org::apache::lucene::util::Accountable namedAccountable(const ::java::lang::String &, jlong);
          static ::org::apache::lucene::util::Accountable namedAccountable(const ::java::lang::String &, const ::org::apache::lucene::util::Accountable &);
          static ::org::apache::lucene::util::Accountable namedAccountable(const ::java::lang::String &, const ::java::util::Collection &, jlong);
          static ::java::util::Collection namedAccountables(const ::java::lang::String &, const ::java::util::Map &);
          static ::java::lang::String toString(const ::org::apache::lucene::util::Accountable &);
        };
      }
    }
  }
}

#include <Python.h>

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        extern PyType_Def PY_TYPE_DEF(Accountables);
        extern PyTypeObject *PY_TYPE(Accountables);

        class t_Accountables {
        public:
          PyObject_HEAD
          Accountables object;
          static PyObject *wrap_Object(const Accountables&);
          static PyObject *wrap_jobject(const jobject&);
          static void install(PyObject *module);
          static void initialize(PyObject *module);
        };
      }
    }
  }
}

#endif