net.thucydides.core.annotations
Class AnnotatedFields

Package class diagram package AnnotatedFields
java.lang.Object
  extended by net.thucydides.core.annotations.AnnotatedFields

public class AnnotatedFields
extends Object

Find the annotated fields in a given class. Used as a utility class for the higher-level annotation processing. Typical use:

     
         for (Field field : AnnotatedFields.of(someClass).allFields()) {
             ...
         }
     
 


Method Summary
 Set<Field> allFields()
           
static AnnotatedFields of(Class<?> testClass)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

of

public static AnnotatedFields of(Class<?> testClass)

allFields

public Set<Field> allFields()


Copyright © 2011-2012 Wakaleo Consulting. All Rights Reserved.