mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
21 lines
433 B
Java
21 lines
433 B
Java
package com.mysema.query.codegen;
|
|
|
|
import org.junit.Ignore;
|
|
|
|
import com.mysema.query.annotations.QueryEmbedded;
|
|
import com.mysema.query.annotations.QueryEntity;
|
|
import com.mysema.query.domain.EmbeddableWithoutQType;
|
|
|
|
@Ignore
|
|
public class ExternalEmbeddableTest {
|
|
|
|
@QueryEntity
|
|
public static class EntityWithExternalEmbeddable {
|
|
|
|
@QueryEmbedded
|
|
EmbeddableWithoutQType embeddable;
|
|
|
|
}
|
|
|
|
}
|