All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class net.strandberg.html.ResetButton

java.lang.Object
   |
   +----net.strandberg.html.ResetButton

public class ResetButton
extends Object
implements HTMLItem

The class ResetButton is used to create HTML Reset Buttons to be used in Forms. To create a reset button, inside an HTML form, that looks like this:

you would need HTML code like this:

   <INPUT TYPE="RESET" VALUE="Clear form">
 
which is created by this Java code:
   ResetButton rb = new ResetButton("Clear form");
   String myString = rb.toHTML();
 

Version:
$Revision: 0.0 $
Author:
Mats Strandberg
See Also:
Form

Constructor Index

 o ResetButton(String)

Method Index

 o main(String[])
Tests the class
 o toHTML()

Constructors

 o ResetButton
 public ResetButton(String label)

Methods

 o toHTML
 public String toHTML()
 o main
 public static void main(String args[])
Tests the class


All Packages  Class Hierarchy  This Package  Previous  Next  Index