diff options
author | Artur Signell <artur@vaadin.com> | 2012-09-04 08:27:07 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-04 08:27:07 +0300 |
commit | 112572a700c288fc49df60ea23a2ade7c51c5165 (patch) | |
tree | 5b339095f0dd8d2f510db54afd3324cf4874ef3e /server/src/com/vaadin/event | |
parent | ad7de55aec35414086a500e6f234b17827bd52a3 (diff) | |
download | vaadin-framework-112572a700c288fc49df60ea23a2ade7c51c5165.tar.gz vaadin-framework-112572a700c288fc49df60ea23a2ade7c51c5165.zip |
Moved ReflectTools to com.vaadin.util (#4294)
Diffstat (limited to 'server/src/com/vaadin/event')
-rw-r--r-- | server/src/com/vaadin/event/FieldEvents.java | 2 | ||||
-rw-r--r-- | server/src/com/vaadin/event/LayoutEvents.java | 2 | ||||
-rw-r--r-- | server/src/com/vaadin/event/MouseEvents.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/event/FieldEvents.java b/server/src/com/vaadin/event/FieldEvents.java index 10df08291e..3da60ee466 100644 --- a/server/src/com/vaadin/event/FieldEvents.java +++ b/server/src/com/vaadin/event/FieldEvents.java @@ -21,12 +21,12 @@ import java.lang.reflect.Method; import com.vaadin.shared.EventId; import com.vaadin.shared.communication.FieldRpc.FocusAndBlurServerRpc; -import com.vaadin.tools.ReflectTools; import com.vaadin.ui.Component; import com.vaadin.ui.Component.Event; import com.vaadin.ui.Field; import com.vaadin.ui.Field.ValueChangeEvent; import com.vaadin.ui.TextField; +import com.vaadin.util.ReflectTools; /** * Interface that serves as a wrapper for {@link Field} related events. diff --git a/server/src/com/vaadin/event/LayoutEvents.java b/server/src/com/vaadin/event/LayoutEvents.java index 7f88ddc640..c113ff1595 100644 --- a/server/src/com/vaadin/event/LayoutEvents.java +++ b/server/src/com/vaadin/event/LayoutEvents.java @@ -21,9 +21,9 @@ import java.lang.reflect.Method; import com.vaadin.event.MouseEvents.ClickEvent; import com.vaadin.shared.Connector; import com.vaadin.shared.MouseEventDetails; -import com.vaadin.tools.ReflectTools; import com.vaadin.ui.Component; import com.vaadin.ui.ComponentContainer; +import com.vaadin.util.ReflectTools; public interface LayoutEvents { diff --git a/server/src/com/vaadin/event/MouseEvents.java b/server/src/com/vaadin/event/MouseEvents.java index 0fe9902b2e..6712ef79a5 100644 --- a/server/src/com/vaadin/event/MouseEvents.java +++ b/server/src/com/vaadin/event/MouseEvents.java @@ -19,8 +19,8 @@ package com.vaadin.event; import java.lang.reflect.Method; import com.vaadin.shared.MouseEventDetails; -import com.vaadin.tools.ReflectTools; import com.vaadin.ui.Component; +import com.vaadin.util.ReflectTools; /** * Interface that serves as a wrapper for mouse related events. |