This commit is contained in:
Timo Westkämper 2011-07-05 07:03:39 +00:00
parent 1e439abc49
commit 4e5df42ccd
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package com.mysema.query.domain;
import org.junit.Ignore;
import com.mysema.query.annotations.QueryEmbedded;
import com.mysema.query.annotations.QueryEntity;
@Ignore
public class ExternalEmbeddableTest {
@QueryEntity
public class EntityWithExternalEmbeddable {
@QueryEmbedded
EmbeddableWithoutQType embeddable;
}
}

View File

@ -0,0 +1,5 @@
package com.mysema.query.domain;
public class EmbeddableWithoutQType {
}