I've written an example of how to do this.
Find below the class being investigated:
import javax.swing.JLabel;
import javax.swing.JTable;
import javax.swing.JWindow;
public class Foo {
int i;
long j;
String s;
JTable table;
JLabel label;
JWindow window;
}
And here is the code that checks the fields of this class:
import java.lang.reflect.Field;
public class Test {
public static void main(String[] args) {
new Test().run();
}
private void run() {
Class<?> c = Foo.class;
System.out.println("The following fields extend Component: ");
for (Field f : c.getDeclaredFields()) {
Class<?> fieldClass = f.getType();
Class<java.awt.Component> compClass = java.awt.Component.class;
if (compClass.isAssignableFrom(fieldClass)) {
System.out.println(f.getName());
}
}
}
}
Output:
The following fields extend Component:
table
label
window
instanceofis not enough? – khachik Mar 28 '12 at 8:09isinstance? I guess you meaninstanceof? – shift66 Mar 28 '12 at 8:10