Package | Description |
---|---|
com.hfg.html |
The HTML classes in this package can be used to construct HTML or XHTML in an object-oriented fashion.
|
Modifier and Type | Class and Description |
---|---|
class |
InputButton
Represents a button form element (<input type='button'>) tag.
|
class |
InputCheckbox
Represents a checkbox form element (<input type='checkbox'>) tag.
|
class |
InputFile
Represents a file upload form element (<input type='file'>) tag.
|
class |
InputPassword
Represents a password form element (<input type='password'>) tag.
|
class |
InputRadio
Represents a radio form element (<input type='radio'>) tag.
|
class |
InputText
Represents a text input form element (<input type='text'>) tag.
|
class |
Textarea
Represents a textarea (<textarea>) tag.
|
Modifier and Type | Method and Description |
---|---|
HTMLTagWithFormEvents |
HTMLTagWithFormEvents.appendToOnBlur(String inValue) |
HTMLTagWithFormEvents |
HTMLTagWithFormEvents.appendToOnChange(String inValue) |
HTMLTagWithFormEvents |
HTMLTagWithFormEvents.appendToOnFocus(String inValue) |
HTMLTagWithFormEvents |
HTMLTagWithFormEvents.setOnBlur(String inValue) |
HTMLTagWithFormEvents |
HTMLTagWithFormEvents.setOnChange(String inValue) |
HTMLTagWithFormEvents |
HTMLTagWithFormEvents.setOnFocus(String inValue) |
jataylor@hairyfatguy.com