* .hgignore: Added tests/regression/junit/*.class.
[cacao.git] / tests / regression / MinimalClassReflection.java
index 1a198e05cbc3c30491ba4f1ef3b549fd8184dfc3..af2ef181bd04b4c7d04026ecca148a810a65d0c5 100644 (file)
 
    Authors: Mathias Panzenböck
 
-   $Id$
-
 */
 
+/**
+ * Test following methos of java.lang.Class for proper function:
+ *  getSuperclass()
+ *  getDeclaringClass()
+ *  getEnclosingClass()
+ *  getEnclosingConstructor()
+ *  getEnclosingMethod()
+ *
+ * I wrote this because getSuperclass() sometimes made problems.
+ */
 import java.lang.reflect.Method;
 import java.lang.reflect.Constructor;