//================================================================================================== // J a v a Interface // R e f l e c t i o n // By Bruno Bachelet //================================================================================================== // Copyright (c) 1999-2016 // Bruno Bachelet - bruno@nawouak.net - http://www.nawouak.net // // This file is part of the B++ Library. This library is free software; you can redistribute it // and/or modify it under the terms of the GNU Library General Public License as published by the // Free Software Foundation; either version 2 of the License, or (at your option) any later // version. // // This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; // without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See // the GNU Library General Public License for more details (http://www.gnu.org).
/*DESCRIPTION*/ /* This module provides facilities to get the structure of Java classes and to build their Jirk++ representation. What we call "Jirk++" is a C++ mechanism and tools that allow an easy use of Java classes in C++. This mechanism is based on the Java Native Interface (JNI). */
// File Name //------------------------------------------------------------------------------------- #line __LINE__ "java/reflection.hpp"
// End //------------------------------------------------------------------------------------------- |
|