+2001-12-21 Tom Tromey <tromey@redhat.com>
+
+ Fix for PR libgcj/2428:
+ * java/lang/natClass.cc: Include RuntimePermission.h.
+ (getClassLoader): Define.
+ * java/lang/Class.h (Class.getClassLoader): Only declare.
+
2001-12-19 Tom Tromey <tromey@redhat.com>
* java/awt/FlowLayout.java (FlowLayout(), FlowLayout(int)): Set
static jclass forName (jstring className);
JArray<jclass> *getClasses (void);
- java::lang::ClassLoader *getClassLoader (void)
- {
- return loader;
- }
+ java::lang::ClassLoader *getClassLoader (void);
java::lang::reflect::Constructor *getConstructor (JArray<jclass> *);
JArray<java::lang::reflect::Constructor *> *getConstructors (void);
#include <java/lang/NoSuchMethodException.h>
#include <java/lang/Thread.h>
#include <java/lang/NullPointerException.h>
+#include <java/lang/RuntimePermission.h>
#include <java/lang/System.h>
#include <java/lang/SecurityManager.h>
#include <java/lang/StringBuffer.h>
return forName (className, true, NULL);
}
+java::lang::ClassLoader *
+java::lang::Class::getClassLoader (void)
+{
+#if 0
+ // FIXME: the checks we need to do are more complex. See the spec.
+ // Currently we can't implement them.
+ java::lang::SecurityManager *s = java::lang::System::getSecurityManager();
+ if (s != NULL)
+ s->checkPermission (new RuntimePermission (JvNewStringLatin1 ("getClassLoader")));
+#endif
+
+ // The spec requires us to return `null' for primitive classes. In
+ // other cases we have the option of returning `null' for classes
+ // loaded with the bootstrap loader. All gcj-compiled classes which
+ // are linked into the application used to return `null' here, but
+ // that confuses some poorly-written applications. It is a useful
+ // and apparently harmless compatibility hack to simply never return
+ // `null' instead.
+ if (isPrimitive ())
+ return NULL;
+ return loader ? loader : ClassLoader::getSystemClassLoader ();
+}
+
java::lang::reflect::Constructor *
java::lang::Class::getConstructor (JArray<jclass> *param_types)
{
JArray<jclass> *
java::lang::Class::getClasses (void)
{
+ // FIXME: security checking.
+
// Until we have inner classes, it always makes sense to return an
// empty array.
JArray<jclass> *result
JArray<java::lang::reflect::Field *> *
java::lang::Class::getFields (void)
{
+ // FIXME: security checking.
+
using namespace java::lang::reflect;
int count = _getFields (NULL, 0);