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 / InfoStream.h
Size: Mime:
#ifndef org_apache_lucene_util_InfoStream_H
#define org_apache_lucene_util_InfoStream_H

#include "java/lang/Object.h"

namespace org {
  namespace apache {
    namespace lucene {
      namespace util {
        class InfoStream;
      }
    }
  }
}
namespace java {
  namespace lang {
    class String;
    class Class;
  }
  namespace io {
    class Closeable;
  }
}
template<class T> class JArray;

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

        class InfoStream : public ::java::lang::Object {
         public:
          enum {
            mid_init$_d7775b228e076e62,
            mid_getDefault_8e9eae0756ad243d,
            mid_isEnabled_fe195507b81318e5,
            mid_message_9bb4c9427a947ae3,
            mid_setDefault_81cfbc1ff915ece8,
            max_mid
          };

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

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

          static InfoStream *NO_OUTPUT;

          InfoStream();

          static InfoStream getDefault();
          jboolean isEnabled(const ::java::lang::String &) const;
          void message(const ::java::lang::String &, const ::java::lang::String &) const;
          static void setDefault(const InfoStream &);
        };
      }
    }
  }
}

#include <Python.h>

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

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

#endif