Browse Source

Organize imports.

svn changeset:15544/svn branch:6.5
tags/6.7.0.beta1
Artur Signell 13 years ago
parent
commit
da911a6550

+ 0
- 2
src/com/vaadin/data/util/MethodProperty.java View 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[] {},

+ 1
- 0
src/com/vaadin/terminal/ReceiverOwner.java View 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

+ 1
- 0
src/com/vaadin/terminal/gwt/client/ui/ShortcutActionHandler.java View 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;

Loading…
Cancel
Save