DATACMNS-311 - TypeDiscoverer now also finds properties in type hierarchy.

We now also inspect the entire type hierarchy to lookup a property descriptor to inspect for read methods in case no field is found for a property.
This commit is contained in:
Oliver Gierke
2013-04-12 16:41:39 +02:00
parent 59af5770dd
commit 8d69459f74
2 changed files with 33 additions and 2 deletions

View File

@@ -394,8 +394,11 @@ public class ClassTypeInformationUnitTests {
Category getCategory();
}
interface Category {
interface Category extends Identifiable {
}
interface Identifiable {
Long getId();
}
}