Package org.fest.reflect.innerclass

Provides a "fluent" API for accessing static inner classes via the Java Reflection API.

See: Description

Package org.fest.reflect.innerclass Description

Provides a "fluent" API for accessing static inner classes via the Java Reflection API.

Note: Classes in this package are not intended to be used directly. To use them, you need to use the class org.fest.reflect.core.Reflection.

Here are some examples:

   // import static org.fest.reflect.core.Reflection.*;

   // Gets the inner class 'Master' in the declaring class 'Jedi':
   Class<?> masterClass = staticInnerClass("Master").in(Jedi.class).get();

Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.