]> source.dussan.org Git - vaadin-framework.git/commitdiff
Organize imports.
authorArtur Signell <artur.signell@itmill.com>
Thu, 14 Oct 2010 06:19:09 +0000 (06:19 +0000)
committerArtur Signell <artur.signell@itmill.com>
Thu, 14 Oct 2010 06:19:09 +0000 (06:19 +0000)
svn changeset:15544/svn branch:6.5

src/com/vaadin/data/util/MethodProperty.java
src/com/vaadin/terminal/ReceiverOwner.java
src/com/vaadin/terminal/gwt/client/ui/ShortcutActionHandler.java

index 081833e3612652eacec3168b30b482779af0e8a7..6cfa5e87b7418bae3c4d51d1efe37ed5c10b4046 100644 (file)
@@ -286,7 +286,6 @@ public class MethodProperty<T> implements Property,
      *            the name of the setter method.
      * 
      */
-    @SuppressWarnings("unchecked")
     public MethodProperty(Class<? extends T> type, Object instance,
             String getMethodName, String setMethodName) {
         this(type, instance, getMethodName, setMethodName, new Object[] {},
@@ -316,7 +315,6 @@ public class MethodProperty<T> implements Property,
      * @param setMethod
      *            the setter method.
      */
-    @SuppressWarnings("unchecked")
     public MethodProperty(Class<? extends T> type, Object instance,
             Method getMethod, Method setMethod) {
         this(type, instance, getMethod, setMethod, new Object[] {},
index 318ed72cdc3feded77f3bce2500aaeb0666d4b38..d8263f920281b50930865f5d76c468d816ad60b6 100644 (file)
@@ -3,6 +3,7 @@ package com.vaadin.terminal;
 import java.io.Serializable;
 
 import com.vaadin.Application;
+import com.vaadin.terminal.ReceiverOwner.ReceivingController;
 
 /**
  * Special kind of {@link VariableOwner} that can send and receive information
index 814929de4a513adb2a80d7c440050a16376039b8..b5137a4a656e188a763e9116664c937f3de4c37e 100644 (file)
@@ -18,6 +18,7 @@ import com.google.gwt.user.client.ui.KeyboardListenerCollection;
 import com.google.gwt.user.client.ui.Widget;
 import com.vaadin.terminal.gwt.client.ApplicationConnection;
 import com.vaadin.terminal.gwt.client.BrowserInfo;
+import com.vaadin.terminal.gwt.client.Container;
 import com.vaadin.terminal.gwt.client.Paintable;
 import com.vaadin.terminal.gwt.client.UIDL;
 import com.vaadin.terminal.gwt.client.Util;