org.itsnat.comp.html |
Contains interfaces of HTML based components, HTML components are bound to concrete HTML elements.
|
Java Source File Name | Type | Comment |
ItsNatHTMLAnchor.java | Interface | Is the interface of HTML <a> based components. |
ItsNatHTMLAnchorLabel.java | Interface | Is the interface of HTML <a> based components. |
ItsNatHTMLButton.java | Interface | Is the interface of HTML <button> based components. |
ItsNatHTMLButtonLabel.java | Interface | Is the interface of HTML <button> based components. |
ItsNatHTMLComponentManager.java | Interface | Utility interface to manage (create, register etc) ItsNat HTML based components of
the associated
ItsNatHTMLDocument . |
ItsNatHTMLElementComponent.java | Interface | Is the base interface which every HTML DOM Element based component implements.
Some HTML elements has a built-in ItsNat components as <input>,
<a>,<select> etc. |
ItsNatHTMLForm.java | Interface | Is the interface of HTML <form> components. |
ItsNatHTMLFormComponent.java | Interface | |
ItsNatHTMLInput.java | Interface | Is the interface of <input> based components. |
ItsNatHTMLInputButton.java | Interface | Is the interface of HTML <input> based components with "button" attribute.
This component type works as a normal button. |
ItsNatHTMLInputButtonNormal.java | Interface | Is the base interface of normal button components based on HTML <input> elements. |
ItsNatHTMLInputButtonToggle.java | Interface | Is the base interface of toggle button components based on HTML <input> elements
(check boxes and radio buttons). |
ItsNatHTMLInputCheckBox.java | Interface | Is the interface of HTML <input> based components with "checkbox" attribute. |
ItsNatHTMLInputFile.java | Interface | Is the interface of text based components which text is rendered/edited
as a single line using an HTML input element with type "file".
ItsNat provides a default implementation of this interface.
This component is "passive", do not try to set a file path explicitly
calling
ItsNatHTMLInputFile.setText(String) or using the data model because for security reasons browsers reject or ignore
a initial value of an <input> file element or any attempt to set this value
using JavaScript (to avoid an unadvertised file upload), only the user
can set a file path. |
ItsNatHTMLInputHidden.java | Interface | Is the interface of text based components which text is rendered
as a single line using an HTML input element with type "hidden". |
ItsNatHTMLInputImage.java | Interface | Is the interface of HTML <input> based components with "image" attribute. |
ItsNatHTMLInputPassword.java | Interface | Is the interface of
ItsNatPasswordField components
using HTML input elements with type "password" as user interface. |
ItsNatHTMLInputRadio.java | Interface | Is the interface of HTML <input> based components with "checkbox" attribute. |
ItsNatHTMLInputReset.java | Interface | Is the interface of HTML <input> based components with "reset" attribute.
This component type works as a normal button. |
ItsNatHTMLInputSubmit.java | Interface | Is the interface of HTML <input> based components with "submit" attribute.
This component type works as a normal button. |
ItsNatHTMLInputText.java | Interface | Is the base interface of text based components which text is rendered/edited
as a single line using an HTML input element with type "text". |
ItsNatHTMLInputTextBased.java | Interface | Is the base interface of text based components which text is rendered/edited
as a single line using an HTML input element. |
ItsNatHTMLInputTextFormatted.java | Interface | Is the interface of
ItsNatFormattedTextField components
using HTML input text elements as user interface. |
ItsNatHTMLLabel.java | Interface | Is the interface of HTML <label> based components.
ItsNat provides a default implementation of this interface.
This component may be useful to forms with non-fixed labels (e.g. |
ItsNatHTMLSelect.java | Interface | Is the base interface of list components attached to HTML <select> elements. |
ItsNatHTMLSelectComboBox.java | Interface | Is the interface of combo box components based on HTML select elements. |
ItsNatHTMLSelectMult.java | Interface | Is the interface of multiple selection list components based on HTML select elements. |
ItsNatHTMLTable.java | Interface | Is the interface of HTML <table> components. |
ItsNatHTMLTableHeader.java | Interface | Is the interface of the HTML table header component. |
ItsNatHTMLTextArea.java | Interface | Is the interface of text based components which text is rendered/edited
with multiple lines using an HTML <textarea> element. |