mirror of
https://github.com/hibernate/hibernate-orm
synced 2025-02-07 11:48:18 +00:00
d325a5e90d
Signed-off-by: Jan Schatteman <jschatte@redhat.com>
11 lines
295 B
Plaintext
11 lines
295 B
Plaintext
// Checkerframework stubs for javax.lang
|
|
|
|
package javax.lang.model.util;
|
|
|
|
import org.checkerframework.checker.nullness.qual.Nullable;
|
|
|
|
public interface Types {
|
|
public WildcardType getWildcardType(
|
|
@Nullable TypeMirror extendsBound,
|
|
@Nullable TypeMirror superBound);
|
|
} |