From 59200ce6b0934cbfaafb70779abefca0f155ab66 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Wed, 25 Apr 2012 21:20:27 +0200 Subject: [PATCH] [#1342] Improve Javadoc on Factory.function(). Document arguments --- jOOQ/src/main/java/org/jooq/impl/Factory.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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) {