/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef _Constructor_H #define _Constructor_H #include #include "JArray.h" namespace java { namespace lang { class Class; class String; namespace reflect { #ifdef _java_generics class Type; class TypeVariable; #endif class Constructor : public Object { public: static Class *class$; static jmethodID *_mids; static jclass initializeClass(bool); explicit Constructor(jobject obj) : Object(obj) { initializeClass(false); } Constructor(const Constructor& obj) : Object(obj) {} int getModifiers() const; JArray getParameterTypes() const; JArray getExceptionTypes() const; #ifdef _java_generics JArray getTypeParameters() const; JArray getGenericExceptionTypes() const; JArray getGenericParameterTypes() const; #endif }; extern PyTypeObject PY_TYPE(Constructor); class t_Constructor { public: PyObject_HEAD Constructor object; static PyObject *wrap_Object(const Constructor& object); static PyObject *wrap_jobject(const jobject& object); }; } } } #endif /* _Constructor_H */