summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/DateField.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved server files to a server src folder (#9299)Artur Signell2012-08-131-869/+0
|
* Add Java 6 @Override annotations to all methods from interfacesLeif Åstrand2012-07-231-0/+6
|
* Moved each component to its own package on client sideArtur Signell2012-04-121-1/+1
| | | | | | Class loaders have problems with referring to static inner classes (e.g. state classes) when they cannot load the declaring class. To deal with this the components have been moved to their own packages and state/rpc classes will be defined in their own Java files.
* Component no longer implements PaintableArtur Signell2012-04-121-5/+2
|
* Replace @ClientWidget with client-side @Component (#8440)Henri Sara2012-04-041-2/+0
|
* Renamed Paintable component classes to ConnectorArtur Signell2012-02-281-2/+2
|
* Splitted VPopupCalendar to Widget and Paintable.Jens Jansson2012-01-301-2/+2
|
* #8125 Removed remaining references to Property.ConversionExceptionArtur Signell2011-12-211-2/+2
|
* #8125 Removed Property.ConversionException and String constructor basedArtur Signell2011-12-211-22/+6
| | | conversion from Property classes
* #8019/#8117/#6081 Cleaned up code and fixed issue where an invalidArtur Signell2011-12-151-38/+91
| | | | | string was interpreted as a valid date Also added test for the Resolution enum static methods
* #6081 Always also zero out millisecondsArtur Signell2011-12-141-0/+1
|
* #8118 Remove support for millisecond resolutionArtur Signell2011-12-141-12/+1
|
* #8117 DateField resolution default should be dayArtur Signell2011-12-141-2/+4
|
* #6081 DateField should zero fields that are not part of the resolutionArtur Signell2011-12-141-19/+20
|
* #8019 Changed DateField resolution to enumArtur Signell2011-12-141-109/+118
|
* Merge remote branch 'origin/6.8'Leif Åstrand2011-12-091-2/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/com/vaadin/Application.java src/com/vaadin/data/Property.java src/com/vaadin/data/util/PropertyFormatter.java src/com/vaadin/terminal/ParameterHandler.java src/com/vaadin/terminal/URIHandler.java src/com/vaadin/terminal/gwt/client/HistoryImplIEVaadin.java src/com/vaadin/terminal/gwt/client/ui/layout/ChildComponentContainer.java src/com/vaadin/terminal/gwt/server/ApplicationPortlet.java src/com/vaadin/terminal/gwt/server/PortletApplicationContext.java src/com/vaadin/ui/Field.java src/com/vaadin/ui/LoginForm.java src/com/vaadin/ui/UriFragmentUtility.java
| * #7354 IT Mill -> Vaadin find and replaceArtur Signell2011-12-081-2/+2
| | | | | | | | svn changeset:22317/svn branch:6.7
* | Initial implementation of converters for AbstractFieldArtur Signell2011-11-281-18/+2
| |
* | #7930 Eliminate Validator.isValid()Henri Sara2011-11-121-8/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | Eliminate the redundant method Validator.isValid(). Validator.validate() does the same but throws an exception including the validation error message. Migration: - replace implementations of isValid() with internalIsValid() in custom subclasses of AbstractValidator - use Validator.validate() and catch exceptions rather than call Validator.isValid() - note that AbstractField still provides an isValid() method that is internally based on validate()
* | Eliminate more Field and Property related raw type warnings.Henri Sara2011-11-111-1/+1
| | | | | | | | Eliminate some more warnings for use of raw types (Field, Property, Class), mostly by changing API method return types.
* | Parameterize Property and Field with the value type.Henri Sara2011-11-081-6/+6
|/ | | | | | | | | | | | | | | | | | | The interfaces Property and Field and most of their implementations are now parameterized with the type of their value. The method getValue() returns the Property type but setValue() takes Object as its parameter. No implicit conversions between value type and strings are performed in most locations (fields). Among others, AbstractTextField, DateField and RichTextArea not have specific value types and do not accept arbitrary values. Most locations requiring migration will be visible as compilation errors, with the exception of some cases where a non-parameterized Property or Field (or one parametrized with Object) is used. Not yet done: - Label - converters - setValue() parameterization (causes much more migration effort)
* #6770 error indicator should not be hidden when a DateField is "empty" ↵Henri Sara2011-09-051-1/+6
| | | | | | because it has an invalid date string svn changeset:20851/svn branch:6.7
* #6066 Support for time zones in DateFieldLeif Åstrand2011-08-221-1/+44
| | | | svn changeset:20536/svn branch:6.7
* #6407 Removed setInvalidAllowed(false) from DateField to be consistent with ↵Artur Signell2011-04-261-4/+0
| | | | | | other fields and AbstractField declaration of default for invalidAllowed svn changeset:18480/svn branch:6.6
* fixes #6265Matti Tahvonen2011-01-111-1/+1
| | | | svn changeset:16851/svn branch:6.5
* internal field rename (last refactoring had inverted the meaning)Matti Tahvonen2011-01-101-11/+11
| | | | svn changeset:16830/svn branch:6.5
* better field names + one TODO noteMatti Tahvonen2011-01-071-13/+18
| | | | svn changeset:16816/svn branch:6.5
* #5927, parsing error now somewhat with a similar mechanism as the required ↵Matti Tahvonen2011-01-051-25/+54
| | | | | | error. Kind of a built in validator that is run even though the value of the field is null. svn changeset:16808/svn branch:6.5
* #5927, implemented a customized validate() function to Datefield Matti Tahvonen2011-01-051-3/+34
| | | | svn changeset:16806/svn branch:6.5
* Large server side refactoring for DateFieldMatti Tahvonen2011-01-041-110/+123
| | | | | | | | | | | | | | | | | | | | | Changes summarized: - removed invalid implementation of isEmpty(). Can't work with validation/buffering. Added in #4311, fixes #5927 - removed invalid overridden implementation of valueChange. Added in #5810 and #5277. - moved a lot of flag updates and other internal field updates to setInternalValue. Also tasks removed from valueChange(), now possible since #6002 is fixed. - n non-reported bugs fixed (at least some related to read buffering) - m regressions caused just a moment before large milestone? Trivial minor enhancements to improve maintainability: - removed obsolete toString() method (same as in AbstractField) - added <?> to getType() method as in super implementation, fixes a compilation warning - decreased visibility of setValue(Object, boolean), should be exposed to extending classes only - probably opened accidentally - removed obsolete implementation of setValue(Object), did exactly the same thing as the parent - javadoc typo Sorry for a large patch. Don't like these either. I just don't see how this could have been fixed in smaller patches (except for the trivial fixes). svn changeset:16797/svn branch:6.5
* #6208 - Changing date format does not update field contentsArtur Signell2010-12-271-0/+1
| | | | svn changeset:16667/svn branch:6.5
* Fix for #5810Jonatan Kronqvist2010-12-141-0/+3
| | | | svn changeset:16482/svn branch:6.5
* #5865. Removed some non-needed code from widgetset, prepared datefields and ↵Matti Tahvonen2010-11-041-16/+0
| | | | | | button and select for one-to-one mapping svn changeset:15867/svn branch:6.5
* #5692 Generics: part of changes in Slider and DateFieldHenri Sara2010-10-041-1/+1
| | | | svn changeset:15371/svn branch:6.5
* Fix for #5277Jonatan Kronqvist2010-07-071-13/+50
| | | | svn changeset:14128/svn branch:6.4
* Fixes #5277, #5291, #5292John Alhroos2010-07-021-2/+18
| | | | svn changeset:14022/svn branch:6.4
* Fix for #5203 - DateField setResolution() should call requestRepaintArtur Signell2010-06-171-0/+1
| | | | svn changeset:13724/svn branch:6.4
* Fix for #4311John Alhroos2010-05-251-9/+81
| | | | svn changeset:13359/svn branch:6.4
* fixes #3913Matti Tahvonen2010-03-241-10/+6
| | | | svn changeset:12055/svn branch:6.3
* Two small javadoc correctionsHenri Sara2010-03-241-1/+1
| | | | svn changeset:12051/svn branch:6.3
* Fix for #3492 - DateField should have an option to show week numbersArtur Signell2010-03-221-1/+30
| | | | svn changeset:12004/svn branch:6.3
* Test case and fix for Artur Signell2010-03-121-12/+17
| | | | | | | | * #4263 DateField - returning valid Date in handleUnparsableDateString method works only at the first attempt and * #4304 Resetting the value in DateField.handleUnparsableDate does not update the client side text svn changeset:11820/svn branch:6.3
* fixes #3786, focus and blur events for (textual) datefields and comboboxMatti Tahvonen2009-12-021-1/+37
| | | | svn changeset:10131/svn branch:6.2
* fixes #3175, now non-lenient by default, can be changed via setLenient()Matti Tahvonen2009-11-041-0/+34
| | | | svn changeset:9624/svn branch:6.2
* merged [9621] from 6.1Matti Tahvonen2009-11-041-4/+4
| | | | svn changeset:9622/svn branch:6.2
* "removed" (finalized + deprecated) getTag from AbstractComponentMatti Tahvonen2009-10-061-9/+0
| | | | svn changeset:9095/svn branch:2009-09-widget-packaging_3332
* steps toward simpler widgetset creation. Still needs a lot of cleaning and ↵Matti Tahvonen2009-09-251-0/+2
| | | | | | refining. svn changeset:8930/svn branch:2009-09-widget-packaging_3332
* Fix for #3057 - GAE cannot deserialize DateFieldArtur Signell2009-06-161-1/+1
| | | | svn changeset:8200/svn branch:6.0
* #2831 DateField.handleUnparsableDateString throws ConversionException by defaultHenri Sara2009-05-251-13/+7
| | | | svn changeset:7984/svn branch:6.0
* #2904 Miscellaneous Toolkit -> Vaadin renamesHenri Sara2009-05-181-7/+7
| | | | svn changeset:7854/svn branch:6.0