public class CustomDateTimeEditor
extends java.beans.PropertyEditorSupport
| Constructor and Description |
|---|
CustomDateTimeEditor(java.lang.String formatPattern,
boolean allowEmpty)
Create a new CustomDateEditor instance, using the given DateFormat for parsing and rendering.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getAsText()
Format the DateTime as String, using the specified DateFormat.
|
void |
setAsText(java.lang.String text)
Parse the DateTime from the given text, using the specified DateFormat.
|
public CustomDateTimeEditor(java.lang.String formatPattern,
boolean allowEmpty)
The "allowEmpty" parameter states if an empty String should be allowed for parsing, i.e. get interpreted as null value. Otherwise, an IllegalArgumentException gets thrown in that case.
dateFormat - DateFormat to use for parsing and renderingallowEmpty - if empty strings should be allowedpublic void setAsText(java.lang.String text)
throws java.lang.IllegalArgumentException
setAsText in interface java.beans.PropertyEditorsetAsText in class java.beans.PropertyEditorSupportjava.lang.IllegalArgumentExceptionpublic java.lang.String getAsText()
getAsText in interface java.beans.PropertyEditorgetAsText in class java.beans.PropertyEditorSupport