git-svn-id: https://samskivert.googlecode.com/svn/trunk@1285 6335cc39-0255-0410-8fd6-9bcaacd3b74c

This commit is contained in:
eric
2003-11-04 03:12:39 +00:00
parent 9bf0d6c237
commit 7830380a29
@@ -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 // samskivert library - useful routines for java programs
// Copyright (C) 2001 Michael Bayne // Copyright (C) 2001 Michael Bayne
@@ -91,6 +91,15 @@ public class FormTool
return input("text", name, extra, defaultValue); 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 * Creates a password input field with the specified name and no extra
* arguments or default value. * arguments or default value.