[#1342] Improve Javadoc on Factory.function(). Document arguments

This commit is contained in:
Lukas Eder 2012-04-25 21:20:27 +02:00
parent 569ce789a2
commit 59200ce6b0

View File

@ -920,6 +920,10 @@ public class Factory implements FactoryOperations {
* guarantee syntax integrity. You may also create the possibility of
* malicious SQL injection. Be sure to properly use bind variables and/or
* escape literals when concatenated into SQL clauses!
*
* @param name The function name (without parentheses)
* @param type The function return type
* @param arguments The function arguments
*/
@Support
public static <T> Field<T> function(String name, Class<T> type, Field<?>... arguments) {
@ -934,6 +938,10 @@ public class Factory implements FactoryOperations {
* guarantee syntax integrity. You may also create the possibility of
* malicious SQL injection. Be sure to properly use bind variables and/or
* escape literals when concatenated into SQL clauses!
*
* @param name The function name (without parentheses)
* @param type The function return type
* @param arguments The function arguments
*/
@Support
public static <T> Field<T> function(String name, DataType<T> type, Field<?>... arguments) {