}
// Check annotations on method that have @Concerns annotations themselves
for( Annotation annotation : method.getAnnotations() )
{
@SuppressWarnings( "raw" )
Concerns concerns = annotation.annotationType().getAnnotation( Concerns.class );
if( concerns != null )
{
for( Class<?> concern : concerns.value() )
{
if( helper.appliesTo( concern, method, types, mixinClass ) )
{
concernsFor.add( helper.getConcernModel( concern ) );
}