use of me.panavtec.coordinator.qualifiers.Actions in project Coordinator-java by PaNaVTEC.
the class EnclosingCoordinatorProcessor method processActionsOfCoordinator.
private MappedCoordinator processActionsOfCoordinator(Element e) {
Actions mappedAnnotation = annotationForElement(e);
MappedCoordinator mappedCoordinator = new MappedCoordinator();
mappedCoordinator.setActions(mappedAnnotation.value());
mappedCoordinator.setCoordinatorId(mappedAnnotation.coordinatorId());
mappedCoordinator.setCoordinatorField(elementTools.getFieldName(e));
return mappedCoordinator;
}
Aggregations