From 7830380a29a08aacf0d7311c6dbc29fb19c1180c Mon Sep 17 00:00:00 2001 From: eric Date: Tue, 4 Nov 2003 03:12:39 +0000 Subject: [PATCH] git-svn-id: https://samskivert.googlecode.com/svn/trunk@1285 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../src/java/com/samskivert/velocity/FormTool.java | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/projects/samskivert/src/java/com/samskivert/velocity/FormTool.java b/projects/samskivert/src/java/com/samskivert/velocity/FormTool.java index a7c39a02..08f8b041 100644 --- a/projects/samskivert/src/java/com/samskivert/velocity/FormTool.java +++ b/projects/samskivert/src/java/com/samskivert/velocity/FormTool.java @@ -1,5 +1,5 @@ // -// $Id: FormTool.java,v 1.12 2003/10/21 21:05:44 eric Exp $ +// $Id: FormTool.java,v 1.13 2003/11/04 03:12:39 eric Exp $ // // samskivert library - useful routines for java programs // Copyright (C) 2001 Michael Bayne @@ -91,6 +91,15 @@ public class FormTool return input("text", name, extra, defaultValue); } + /** + * Creates a text input field with the specified name and the + * specified extra arguments and the specified value. + */ + public String fixedText (String name, String extra, String value) + { + return fixedInput("text", name, value, extra); + } + /** * Creates a password input field with the specified name and no extra * arguments or default value.