if (viewMetaData == null)
{
continue;
}
Aggregated aggregated = inheritedAnnotation.annotationType().getAnnotation(Aggregated.class);
if (aggregated == null)
{
aggregated = viewMetaData.annotationType().getAnnotation(Aggregated.class);
}
if (aggregated.value()) //aggregation for the whole annotation is allowed
{
mergedResult.add(inheritedAnnotation);
}
else
{