All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.util.html.FileFormInput

java.lang.Object
   |
   +----com.ibm.as400.util.html.FormInput
           |
           +----com.ibm.as400.util.html.FileFormInput

public class FileFormInput
extends FormInput
The FileFormInput class represents a file input type in an HTML form. The trailing slash "/" on the FileFormInput tag allows it to conform to the XHTML specification.

Here is an example of a FileFormInput tag:
<input type="file" name="myFile" />


Constructor Index

 o FileFormInput()
Constructs a default FileFormInput object.
 o FileFormInput(String)
Constructs a FileFormInput object with the specified control name.

Method Index

 o getTag()
Returns the tag for the file form input type.

Constructors

 o FileFormInput
 public FileFormInput()
Constructs a default FileFormInput object.

 o FileFormInput
 public FileFormInput(String name)
Constructs a FileFormInput object with the specified control name.

Parameters:
name - The control name of the input field.

Methods

 o getTag
 public String getTag()
Returns the tag for the file form input type.

Returns:
The tag.
Overrides:
getTag in class FormInput

All Packages  Class Hierarchy  This Package  Previous  Next  Index