public class HTMLDocument.HTMLReader.FormAction extends HTMLDocument.HTMLReader .SpecialAction
StyleConstants.ModelAttribute set to the model that holds the state for the form control. This enables multiple views, and allows document to be iterated over picking up the data of the form. The following are the model assignments for the various type of form elements.
| Element Type | Model Type |
|---|---|
| input, type button | DefaultButtonModel |
| input, type checkbox | JToggleButton.ToggleButtonModel |
| input, type image | DefaultButtonModel |
| input, type password | PlainDocument |
| input, type radio | JToggleButton.ToggleButtonModel |
| input, type reset | DefaultButtonModel |
| input, type submit | DefaultButtonModel |
| input, type text or type is null. | PlainDocument |
| select | DefaultComboBoxModel or an DefaultListModel, with an item type of Option |
| textarea | PlainDocument |
| Constructor and Description |
|---|
FormAction()
|
| Modifier and Type | Method and Description |
|---|---|
void |
end(HTML
Called when an end tag is seen for the type of tag this action was registered to.
|
void |
start(HTML
Called when a start tag is seen for the type of tag this action was registered to.
|
public void start(HTML.Tag t, MutableAttributeSet attr)
HTMLDocument.HTMLReader.TagAction
public void end(HTML.Tag t)
HTMLDocument.HTMLReader.TagAction