made newInstance nullable

This commit is contained in:
Timo Westkämper 2010-08-24 06:38:40 +00:00
parent 619fd2e930
commit 7786f8ef8d

View File

@ -7,6 +7,8 @@ package com.mysema.query.types;
import java.util.List;
import javax.annotation.Nullable;
/**
* FactoryExpression represents factory expressions such as JavaBean or
* Constructor projections
@ -43,6 +45,7 @@ public interface FactoryExpression<D> {
* @param args
* @return
*/
@Nullable
D newInstance(Object... args);
}