{
PropertyAdapter pa = classAdapter.getPropertyAdapter(name);
List<String> propertyConstraints = CollectionFactory.newList();
OrderBefore beforeAnnotation = pa.getAnnotation(OrderBefore.class);
if (beforeAnnotation != null)
propertyConstraints.add("before:" + beforeAnnotation.value());
OrderAfter afterAnnotation = pa.getAnnotation(OrderAfter.class);
if (afterAnnotation != null)
propertyConstraints.add("after:" + afterAnnotation.value());