m_project.addPartitioningPolicy(new RoundRobinPartitioningMetadata(annotation, getAccessibleObject()));
}
annotation = getAnnotation(UnionPartitioning.class);
if (annotation != null) {
found = true;
m_project.addPartitioningPolicy(new UnionPartitioningMetadata(annotation, getAccessibleObject()));
}
annotation = getAnnotation(RangePartitioning.class);
if (annotation != null) {
found = true;
m_project.addPartitioningPolicy(new RangePartitioningMetadata(annotation, getAccessibleObject()));