diff --git a/projects/samskivert/src/java/com/samskivert/velocity/FormTool.java b/projects/samskivert/src/java/com/samskivert/velocity/FormTool.java index 408b471e..0c8e1543 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.7 2002/11/09 00:48:51 mdb Exp $ +// $Id: FormTool.java,v 1.8 2003/07/04 01:29:16 mdb Exp $ // // samskivert library - useful routines for java programs // Copyright (C) 2001 Michael Bayne @@ -251,6 +251,23 @@ public class FormTool return buf.toString(); } + /** + * Creates a radio button with the specified name and value. + */ + public String radio (String name, String value) + { + StringBuffer buf = new StringBuffer(); + buf.append(""); + return buf.toString(); + } + /** * Constructs a text area with the specified name, optional extra * parameters, and default text.