| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
| |
|
|
|
|
| |
Removed deprecated value formatter from AbstractTextField (#8672)
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
|
|
| |
conversion from Property classes
|
|\ |
|
| |
| |
| |
| | |
svn changeset:22361/svn branch:6.7
|
|\|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| |
| | |
svn changeset:22317/svn branch:6.7
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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)
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The toString() method should not be used on a property to get its value.
Added getStringValue() to AbstractField, Label etc. Using them
where applicable. Added comments to some problematic locations where
Property.toString() is known to be used.
AbstractField.toString() and Label.toString() still return the same
values as before, but it will throw an exception in future revisions.
Migration needed: Replace explicit and implicit uses of
Property.toString() with use property.getValue() and its
string representation.
Alternatively, use AbstractProperty.getStringValue() and
AbstractField.getStringValue() instead of Property.toString() during
migration.
|
|
|
|
| |
svn changeset:21650/svn branch:6.7
|
|
|
|
| |
svn changeset:21621/svn branch:6.7
|
|
|
|
| |
svn changeset:21367/svn branch:6.7
|
|
|
|
| |
svn changeset:21339/svn branch:6.7
|
|
|
|
| |
svn changeset:21332/svn branch:6.7
|
|
|
|
| |
svn changeset:19972/svn branch:6.7
|
|
|
|
| |
svn changeset:19527/svn branch:6.6
|
|
|
|
| |
svn changeset:18491/svn branch:6.6
|
|
|
|
| |
svn changeset:18407/svn branch:6.6
|
|
|
|
| |
svn changeset:18184/svn branch:6.6
|
|
|
|
|
|
|
|
|
|
| |
Made PasswordField, TextArea extend AbstractTextField instead of TextField
Moved commonalities "columns", "input prompt", "text change event" and "cursor position" to AbstractTextField
svn changeset:16354/svn branch:6.5
|
|
now that. Breaks apps that use RichTextArea as a special type for TextField like our NotificationExample.
Also fixes focus and selectAll in RichTextArea. More complicated selections methods removed from RichTextArea, at least until it is possible to implement them with GWT RichTextArea.
svn changeset:15725/svn branch:6.5
|