private void configureScopes(Class<?> clazz)
{
Asserts.nullCheckForClass(clazz);
Stereotype type = clazz.getAnnotation(Stereotype.class);
Class<? extends Annotation>[] supportedScopes = type.supportedScopes();
this.supportedScopes = new HashSet<Class<? extends Annotation>>(Arrays.asList(supportedScopes));
}
private void configureTypes(Class<?> clazz)