refactored querydsl-apt packages

This commit is contained in:
Timo Westkämper 2009-03-10 15:01:55 +00:00
parent eeee5717a8
commit 506264ae2c

View File

@ -29,6 +29,14 @@ public class DomainTest {
it = new QItemType("it");
}
@Domain
public interface InterfaceType{
InterfaceType getRelation();
List<InterfaceType> getRelation2();
List<? extends InterfaceType> getRelation3();
int getRelation4();
}
@Domain
public static class SimpleTypes{
transient int test;