I have a class like this:
public class ClassList {
    public class SubClassOne {
    }
    public class SubClassTwo {
    }
}
Now i want to have a list of all classes in my ClassList class without having to add them all by hand. Is that possible?