Package org.fest.reflect.type

Provides a "fluent" API for loading classes dynamically.

See:
          Description

Class Summary
Type Understands loading a class dynamically.
TypeLoader Understands loading a class dynamically using a specific ClassLoader.
 

Package org.fest.reflect.type Description

Provides a "fluent" API for loading classes dynamically.

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.*;

   // Loads the class 'org.republic.Jedi"
   Class<?> jediType = type("org.republic.Jedi").load();



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