if (pa.getAnnotation(Order.class) != null) continue;
Method readMethod = pa.getReadMethod();
MethodLocation location = classFactory.getMethodLocation(readMethod);
int lineNumber = location != null ? location.getLineNumber() : 0;
properties.add(new PropertyOrder(name, computeDepth(readMethod), lineNumber));
}
Collections.sort(properties);