Package org.fest.reflect.innerclass

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

See:
          Description

Class Summary
Invoker Understands how to obtain a reference to a static inner class.
StaticInnerClassName Understands the name of a static inner class.
 

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-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.