diff --git a/jOOQ/src/main/java/org/jooq/impl/Factory.java b/jOOQ/src/main/java/org/jooq/impl/Factory.java index a4d309e868..3916b9b405 100644 --- a/jOOQ/src/main/java/org/jooq/impl/Factory.java +++ b/jOOQ/src/main/java/org/jooq/impl/Factory.java @@ -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 Field function(String name, Class 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 Field function(String name, DataType type, Field... arguments) {