mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-27 21:01:15 +08:00
#798653 : fixed generics handling
This commit is contained in:
parent
2be2991bc9
commit
ab85349f6c
@ -0,0 +1,28 @@
|
||||
package com.mysema.query.domain;
|
||||
|
||||
import org.junit.Ignore;
|
||||
|
||||
import com.mysema.query.annotations.QueryEntity;
|
||||
|
||||
@Ignore
|
||||
public class Enum2Test {
|
||||
|
||||
@QueryEntity
|
||||
public abstract class EnumPermissions<P extends Enum<P> & Permission> extends EntityImpl implements Permissions<P> {
|
||||
|
||||
}
|
||||
|
||||
@QueryEntity
|
||||
public abstract class EntityImpl {
|
||||
|
||||
}
|
||||
|
||||
public interface Permission {
|
||||
|
||||
}
|
||||
|
||||
public interface Permissions<P> {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@ -28,7 +28,7 @@
|
||||
<hsqldb.version>1.8.0.7</hsqldb.version>
|
||||
<commons.collections.version>4.01</commons.collections.version>
|
||||
<commons.lang.version>2.4</commons.lang.version>
|
||||
<codegen.version>0.3.9</codegen.version>
|
||||
<codegen.version>0.4.0</codegen.version>
|
||||
<mysema.lang.version>0.2.1</mysema.lang.version>
|
||||
<cglib.version>2.2</cglib.version>
|
||||
<findbugs.version>1.3.2</findbugs.version>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user