All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class w3c.jigsaw.forms.LinkField

java.lang.Object
   |
   +----w3c.jigsaw.forms.FormField
           |
           +----w3c.jigsaw.forms.LinkField

public class LinkField
extends FormField
A link field is an imutable field, that allows to insert links into a form.


Constructor Index

 o LinkField()
 o LinkField(String, String, String, String)

Method Index

 o dump(HtmlGenerator)
Dump this field into a suitable HTML form element.
 o getValue()
Get this field value.
 o setValue(String)
Set this field value.

Constructors

 o LinkField
 public LinkField(String name,
                  String title,
                  String url,
                  String value)
 o LinkField
 public LinkField()

Methods

 o getValue
 public Object getValue()
Get this field value.

Overrides:
getValue in class FormField
 o setValue
 public boolean setValue(String nval) throws FormFieldException
Set this field value.

Parameters:
nval - The new value for this field, as a string.
Returns:
A boolean, truefalse otherwise.
Overrides:
setValue in class FormField
 o dump
 public void dump(HtmlGenerator into)
Dump this field into a suitable HTML form element.

Parameters:
into - The HtmlGenerator to dump this field into.
Overrides:
dump in class FormField

All Packages  Class Hierarchy  This Package  Previous  Next  Index