org.pajes.html
Class InputTime
java.lang.Object
org.pajes.html.Tag
org.pajes.html.Input
org.pajes.html.InputField
org.pajes.html.InputString
org.pajes.html.InputDateTimeString
org.pajes.html.InputTime
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable, HTML, InputMandatoryValidation, InputValidation
public class InputTime
- extends InputDateTimeString
This class creates an input field in a form that accepts a timestamp (date
and time values) from the user. The default date time format expected is
"HH:mm:ss".
- See Also:
- Serialized Form
|
Constructor Summary |
InputTime(Form form,
java.lang.String name)
Creates a named input field. |
InputTime(Form form,
java.lang.String name,
java.lang.String value)
Creates a named input field with a default value. |
InputTime(Form form,
java.lang.String name,
java.sql.Time value)
Creates a named input field with a default value. |
InputTime(InputField source)
Creates a named input field. |
| Methods inherited from class org.pajes.html.InputField |
getClientValidation, getMaxLength, getSize, isMandatory, setMandatory, setMandatory, setMandatory, setMaxLength, setMaxLength, setSize, setSize |
| Methods inherited from class org.pajes.html.Input |
addClientValidation, addContent, clone, getClientValidation, getDOMReference, getFieldNameForErrorMessage, getForm, getInstance, getLabel, getName, getOnBlurHandler, getOnChangeHandler, getOnFocusHandler, getOnSelectHandler, getReadOnlyStyleSheetClass, getTabIndex, getType, getValue, isChangeFlagEnabled, isDisabled, isReadOnly, isRequiringValidation, logNoFormWarning, removeClientValidation, removeClientValidation, removeClientValidation, removeMandatoryClientValidation, setChanged, setChangedFlag, setContent, setDisabled, setFieldNameInErrorMessage, setFieldNameInErrorMessage, setForm, setId, setLabel, setName, setOnBlurHandler, setOnBlurValidation, setOnChangeHandler, setOnClickHandler, setOnFocusHandler, setOnSelectHandler, setReadOnly, setReadOnlyStyleSheetClass, setTabIndex, setTabIndex, setTabIndex, write |
| Methods inherited from class org.pajes.html.Tag |
addAttribute, addAttributes, addAttributes, clearAttribute, clearAttributes, destroy, getAttribute, getAttributes, getAttributeSet, getContainer, getContent, getDocument, getId, getOnClickHandler, getOnDBLClickHandler, getOnKeyDownHandler, getOnKeyPressHandler, getOnKeyUpHandler, getOnMouseDownHandler, getOnMouseOutHandler, getOnMouseOverHandler, getOnMouseUpHandler, getParent, getStyle, getStyleSheetClass, getTagName, getTitle, getWritePermission, hasAttribute, init, initAttributes, isChildOf, isChildOf, isWritable, isWritable, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttribute, setAttributes, setAttributes, setContainer, setContent, setOnDBLClickHandler, setOnKeyDownHandler, setOnKeyPressHandler, setOnKeyUpHandler, setOnMouseDownHandler, setOnMouseOutHandler, setOnMouseOverHandler, setOnMouseUpHandler, setParent, setStyle, setStyleSheetClass, setTagName, setTitle, setWritable, setWriteAttributes, setWriteEndTag, setWritelnAfter, setWritelnAfterContent, setWritelnBefore, setWritelnBeforeContent, setWritePermission, toString, writeContent |
| Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
InputTime
public InputTime(Form form,
java.lang.String name)
- Creates a named input field.
- Parameters:
form - the form on which this input field will appear. Note that the
element must still be added to the form - this reference is
used by the getDOMReference() method to determine the fully
qualified element name.name - the name to apply to the input object, so that it may be
manipulated using client-side JavaScript.
InputTime
public InputTime(Form form,
java.lang.String name,
java.lang.String value)
- Creates a named input field with a default value.
- Parameters:
form - the form on which this input field will appear. Note that the
element must still be added to the form - this reference is
used by the getDOMReference() method to determine the fully
qualified element name.name - the name to apply to the input object, so that it may be
manipulated using client-side JavaScript.value - the default value to assign.
InputTime
public InputTime(Form form,
java.lang.String name,
java.sql.Time value)
- Creates a named input field with a default value.
- Parameters:
form - the form on which this input field will appear. Note that the
element must still be added to the form - this reference is
used by the getDOMReference() method to determine the fully
qualified element name.name - the name to apply to the input object, so that it may be
manipulated using client-side JavaScript.value - the default value to assign to the field.
InputTime
public InputTime(InputField source)
- Creates a named input field.
- Parameters:
source - the input field from which this input field will be created.
Copyright © 1998-2007 Viridian Pty Limited. All Rights Reserved.