diff options
author | Henri Sara <hesara@vaadin.com> | 2011-12-22 10:43:14 +0200 |
---|---|---|
committer | Henri Sara <hesara@vaadin.com> | 2011-12-22 11:08:56 +0200 |
commit | 3bf02a9086d7a65d1aa1df8938d6779ac4e29e0c (patch) | |
tree | 87fcf4579333fb8e495000471feb043a119b887c /src/com/vaadin/data/util | |
parent | 709fec546551b7b7c4efde4d64143df33f9ab798 (diff) | |
download | vaadin-framework-3bf02a9086d7a65d1aa1df8938d6779ac4e29e0c.tar.gz vaadin-framework-3bf02a9086d7a65d1aa1df8938d6779ac4e29e0c.zip |
Rename TransactionalProperty to Property.Transactional based on review
(#8094).
Diffstat (limited to 'src/com/vaadin/data/util')
-rw-r--r-- | src/com/vaadin/data/util/TransactionalPropertyWrapper.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/vaadin/data/util/TransactionalPropertyWrapper.java b/src/com/vaadin/data/util/TransactionalPropertyWrapper.java index b593387d71..8e475758bf 100644 --- a/src/com/vaadin/data/util/TransactionalPropertyWrapper.java +++ b/src/com/vaadin/data/util/TransactionalPropertyWrapper.java @@ -6,10 +6,9 @@ package com.vaadin.data.util; import com.vaadin.data.Property;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.Property.ValueChangeNotifier;
-import com.vaadin.data.TransactionalProperty;
public class TransactionalPropertyWrapper<T> extends AbstractProperty<T>
- implements ValueChangeNotifier, TransactionalProperty<T> {
+ implements ValueChangeNotifier, Property.Transactional<T> {
private Property<T> wrappedProperty;
private boolean inTransaction = false;
|