package org.radargun.config; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Method marked with this annotation should be ran after all properties have been set. * The init methods in superclasses are called before methods in subclasses. * If a class has multiple init methods, the order in which these are called is not defined. * * @author Radim Vansa <rvansa@redhat.com> */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Init { }