quintonm 2003/03/14 09:25:16
Modified: src/java/org/apache/turbine/services/velocity
TurbineVelocity.java
Log:
Style and javadoc fixes
Revision Changes Path
1.6 +9 -9
jakarta-turbine-2/src/java/org/apache/turbine/services/velocity/TurbineVelocity.java
Index: TurbineVelocity.java
===================================================================
RCS file:
/home/cvs/jakarta-turbine-2/src/java/org/apache/turbine/services/velocity/TurbineVelocity.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- TurbineVelocity.java 9 Mar 2003 03:06:34 -0000 1.5
+++ TurbineVelocity.java 14 Mar 2003 17:25:15 -0000 1.6
@@ -59,6 +59,7 @@
import org.apache.turbine.services.TurbineServices;
import org.apache.turbine.util.RunData;
+
import org.apache.velocity.context.Context;
/**
@@ -98,9 +99,9 @@
* object.
*
* @param context A Context.
- * @param templateFilePath The path for the template files.
+ * @param template The path for the template files.
* @return A String.
- * @exception Exception, a generic exception.
+ * @exception Exception a generic exception.
*/
public static String handleRequest(Context context, String template)
throws Exception
@@ -113,13 +114,12 @@
* you set in the Context.
*
* @param context A Context.
- * @param filename A String with the filename of the template.
+ * @param template A String with the filename of the template.
* @param out A OutputStream where we will write the process template as
* a String.
- * @exception Exception, a generic exception.
+ * @exception Exception a generic exception.
*/
- public static void handleRequest(Context context,
- String template,
+ public static void handleRequest(Context context, String template,
OutputStream out)
throws Exception
{
@@ -131,10 +131,10 @@
* you set in the Context.
*
* @param context A Context.
- * @param filename A String with the filename of the template.
+ * @param template A String with the filename of the template.
* @param writer A Writer where we will write the process template as
* a String.
- * @exception Exception, a generic exception.
+ * @exception Exception a generic exception.
*/
public static void handleRequest(Context context,
String template,
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]