use of org.jboss.hal.spi.MbuiView in project console by hal.
the class MbuiViewProcessor method onProcess.
@Override
protected boolean onProcess(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
for (Element e : roundEnv.getElementsAnnotatedWith(MbuiView.class)) {
TypeElement type = (TypeElement) e;
MbuiView mbuiView = type.getAnnotation(MbuiView.class);
validateType(type, mbuiView);
processType(type, mbuiView);
}
return false;
}
Aggregations