summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/AbstractField.java
Commit message (Collapse)AuthorAgeFilesLines
* Moved server files to a server src folder (#9299)Artur Signell2012-08-131-1657/+0
|
* Move classes common to client and server to com.vaadin.shared.* (#8934)Leif Åstrand2012-07-271-1/+1
|
* Add Java 6 @Override annotations to all methods from interfacesLeif Åstrand2012-07-231-0/+36
|
* Test for converter factory and related fixes (#8992)Artur Signell2012-06-251-3/+5
|
* Get converter from the application of the component if available (#8992)Artur Signell2012-06-211-1/+1
|
* Converter support and updated data source logic (#8990, #8991)Artur Signell2012-06-211-2/+2
|
* Split generic converter methods from AbstractField (#8991)Artur Signell2012-06-211-62/+18
|
* Show the right target type in the exception messageLeif Åstrand2012-04-131-1/+1
|
* Component no longer implements PaintableArtur Signell2012-04-121-6/+0
|
* Merge remote-tracking branch 'origin/6.8'Artur Signell2012-04-121-8/+39
|\ | | | | | | | | Conflicts: src/com/vaadin/ui/AbstractField.java
| * #6155 Javadoc/comments; refresh field value from data source on attachJohannes Dahlström2012-04-111-8/+39
| | | | | | | | svn changeset:23476/svn branch:6.8
* | Merge remote branch 'origin/6.8'Leif Åstrand2012-04-101-22/+65
|\| | | | | | | | | | | | | | | Conflicts: src/com/vaadin/terminal/gwt/client/ui/VTabsheet.java src/com/vaadin/terminal/gwt/client/ui/VTree.java src/com/vaadin/terminal/gwt/client/ui/VWindow.java src/com/vaadin/ui/AbstractField.java
| * Implemented #8307: Added AbstractField#removeAllValidators()Johannes Dahlström2012-04-051-0/+10
| | | | | | | | svn changeset:23407/svn branch:6.8
| * Fixed #6155: stop listening to Property value change and read only status ↵Johannes Dahlström2012-04-051-20/+41
| | | | | | | | | | | | change events on detach to avoid a potential memory leak, resume listening on attach svn changeset:23406/svn branch:6.8
* | Automatically create state on server side based on getState return typeArtur Signell2012-04-051-4/+0
| |
* | AbstractComponent.updateFromUIDL moved to state change (#8436)Artur Signell2012-04-051-32/+5
| |
* | #8555 Listener for modifying state before it is sent to the clientArtur Signell2012-03-221-17/+8
| |
* | Transfer required attribute in shared state (#8436).Henri Sara2012-03-211-10/+11
| | | | | | | | | | The flag should be used directly from shared state, but that requires error message etc. related updates to be done in a listener before sending states.
* | Convert hide errors flag to shared state (#8437).Henri Sara2012-03-211-7/+6
| |
* | Refactor error messages on server side (#8437).Henri Sara2012-03-211-3/+9
| | | | | | | | This is an intermediate step towards moving error messages from UIDL to shared state.
* | Fixed readonly handling for fields (depends on property readonlyArtur Signell2012-03-131-0/+13
| | | | | | | | status) and enable state handling for components on client side (depend on parent)
* | Organized imports and formatted all java filesArtur Signell2012-02-281-2/+2
| |
* | #8434 Renamed *Paintable classes to *Connector and updated ConnectorMapArtur Signell2012-02-271-3/+3
| | | | | | accordingly
* | Convert some literal strings of UIDL attributes to use constants.Henri Sara2012-02-211-2/+5
| |
* | #8102 Changing data source type from Double -> Number can keep theArtur Signell2011-12-221-3/+7
| | | | | | | | converter while changing from Number -> Double cannot. Fixed reversed logic.
* | #8173 Deprecated separate read through and write through modesArtur Signell2011-12-221-1/+8
| |
* | Renamed getValueConversionError -> getConversionError that was missingArtur Signell2011-12-221-9/+9
| | | | | | | | from an earlier commit. Also made javadoc more specific for getConvertedValue
* | Removed getStringValue based on API review meetingArtur Signell2011-12-221-25/+22
| |
* | #8101 Swapped generics parameter order for Converter based on API reviewArtur Signell2011-12-211-17/+13
| | | | | | meeting
* | #8101 Renamed source type to presentation and target type to model forArtur Signell2011-12-211-6/+6
| | | | | | clarity
* | #8102 getConvertedFieldValue -> getConvertedValue, addedArtur Signell2011-12-211-4/+23
| | | | | | setConvertedValue
* | #8102 Removed "value" from value converter used in AbstractField andArtur Signell2011-12-211-45/+39
| | | | | | | | renamed updateValueConverterFromFactory to setConverter based on API review meeting.
* | #8125 Removed remaining references to Property.ConversionExceptionArtur Signell2011-12-211-2/+0
| |
* | Include original conversion exception as cause for exceptionArtur Signell2011-12-211-1/+2
| |
* | #8125 Removed Property.ConversionException and String constructor basedArtur Signell2011-12-211-6/+5
| | | | | | conversion from Property classes
* | Add javadoc for AbstractField.getInternalValue().Henri Sara2011-12-201-1/+12
| |
* | #8102 Allow overriding the conversion error message for FieldsArtur Signell2011-12-191-8/+55
| |
* | #8127 Add setBuffered to ease use of read through and write throughArtur Signell2011-12-151-8/+68
| | | | | | | | | | modes
* | Fix setting of source exception setting on commit.Henri Sara2011-12-151-1/+1
| |
* | #8110 Validation is now done on the converted valueArtur Signell2011-12-141-35/+62
| | | | | | | | | | | | | | | | Added type to AbstractValidator and automatic type checking so sub classes get the correct type automatically Added a RangeValidator that work with any type that is Comparable CompositeValidator no longer extends AbstractValidator as it does not validate in the same way as AbstractValidator does
* | Use getter and setter for source exceptionArtur Signell2011-12-141-16/+25
| |
* | #8103 ConverterFactory is no longer static + javadoc updatesArtur Signell2011-12-121-19/+49
| |
* | #8101/#8103 Javadoc for converters and converter factoryArtur Signell2011-12-121-4/+4
| |
* | #3851 AbstractField should run validators for empty fieldsArtur Signell2011-12-091-36/+25
| |
* | Merge remote branch 'origin/6.8'Leif Åstrand2011-12-091-3/+3
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-3/+3
| | | | | | | | svn changeset:22317/svn branch:6.7
* | Add CustomField component in Vaadin core (#3718)Henri Sara2011-12-081-5/+14
| | | | | | | | CustomField component, related changes in AbstractField and some tests/examples added to Vaadin core.
* | Handle fields with no data source in AbstractField.convertToDataSource()Henri Sara2011-12-011-21/+18
| |
* | Initial implementation of converters for AbstractFieldArtur Signell2011-11-281-96/+219
| |
* | Merge branch 'master' into databindingArtur Signell2011-11-241-58/+0
|\ \