COMPONENT componentAnnotation = typeDeclaration.getAnnotation(COMPONENT.class);
if( (componentAnnotation != null) && (componentAnnotation.process())){
Component component = new Component(componentAnnotation,currentClass);
processComponentAnnotation(component, currentClass);
}
RENDERER rendererAnnotation = typeDeclaration.getAnnotation(RENDERER.class);
if (rendererAnnotation != null) {
processRendererAnnotation(rendererAnnotation, currentClass);
}
RENDERKIT renderKitAnnotation = typeDeclaration.getAnnotation(RENDERKIT.class);
if (renderKitAnnotation != null) {