aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2010-03-12 13:09:20 +0000
committerArtur Signell <artur.signell@itmill.com>2010-03-12 13:09:20 +0000
commit04bd5beffc53dc46437ea8e02b3d36ff0e7f6773 (patch)
tree86a8debc44d716f31431e4a1abd5d207846df192
parented3e908b454df50ef3dfa63e3812cd4f6bb413b2 (diff)
downloadvaadin-framework-04bd5beffc53dc46437ea8e02b3d36ff0e7f6773.tar.gz
vaadin-framework-04bd5beffc53dc46437ea8e02b3d36ff0e7f6773.zip
Minor javadoc update - removed serialiVersionUID
svn changeset:11819/svn branch:6.3
-rw-r--r--src/com/vaadin/event/FieldEvents.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/com/vaadin/event/FieldEvents.java b/src/com/vaadin/event/FieldEvents.java
index 0280aebb76..e810798b07 100644
--- a/src/com/vaadin/event/FieldEvents.java
+++ b/src/com/vaadin/event/FieldEvents.java
@@ -8,7 +8,11 @@ import java.lang.reflect.Method;
import com.vaadin.tools.ReflectTools;
import com.vaadin.ui.Component;
+import com.vaadin.ui.Field;
+/**
+ * Interface that serves as a wrapper for {@link Field} related events.
+ */
public interface FieldEvents {
/**
@@ -95,8 +99,6 @@ public interface FieldEvents {
*/
public class FocusEvent extends Component.Event {
- private static final long serialVersionUID = -7644184999481404162L;
-
public FocusEvent(Component source) {
super(source);
}
@@ -131,8 +133,6 @@ public interface FieldEvents {
*/
public class BlurEvent extends Component.Event {
- private static final long serialVersionUID = -7644184999481404162L;
-
public BlurEvent(Component source) {
super(source);
}