mirror of
https://github.com/querydsl/querydsl.git
synced 2026-07-03 21:07:49 +08:00
20 lines
328 B
Java
20 lines
328 B
Java
package com.mysema.query.domain;
|
|
|
|
import javax.persistence.Embedded;
|
|
import javax.persistence.Entity;
|
|
|
|
import org.junit.Ignore;
|
|
|
|
@Ignore
|
|
public class ExternalEmbeddableTest {
|
|
|
|
@Entity
|
|
public class EntityWithExternalEmbeddable {
|
|
|
|
@Embedded
|
|
EmbeddableWithoutQType embeddable;
|
|
|
|
}
|
|
|
|
}
|