added Nullable for RelationalPath.getPrimaryKey()

This commit is contained in:
Timo Westkämper 2010-08-24 14:37:49 +00:00
parent 001a40ce56
commit 97fc4edfc1

View File

@ -7,6 +7,8 @@ package com.mysema.query.sql;
import java.util.Collection;
import javax.annotation.Nullable;
import com.mysema.query.types.EntityPath;
/**
@ -22,6 +24,7 @@ public interface RelationalPath<T> extends EntityPath<T>{
*
* @return
*/
@Nullable
PrimaryKey<T> getPrimaryKey();
/**