aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/event
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2010-03-24 14:59:03 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2010-03-24 14:59:03 +0000
commit36bc8fe1ea5eba476e28f93e5742d8c15754eaa1 (patch)
tree10dc0975dc6d4c832f9ebf2f8463204b7f59019f /src/com/vaadin/event
parentd595ded5f102204d4c68899649c41a336f9a4531 (diff)
downloadvaadin-framework-36bc8fe1ea5eba476e28f93e5742d8c15754eaa1.tar.gz
vaadin-framework-36bc8fe1ea5eba476e28f93e5742d8c15754eaa1.zip
renaming criteria
svn changeset:12071/svn branch:6.3
Diffstat (limited to 'src/com/vaadin/event')
-rw-r--r--src/com/vaadin/event/dd/acceptcriteria/SourceIs.java (renamed from src/com/vaadin/event/dd/acceptcriteria/DragSourceIs.java)5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/vaadin/event/dd/acceptcriteria/DragSourceIs.java b/src/com/vaadin/event/dd/acceptcriteria/SourceIs.java
index cd549110ca..8e81f99b9d 100644
--- a/src/com/vaadin/event/dd/acceptcriteria/DragSourceIs.java
+++ b/src/com/vaadin/event/dd/acceptcriteria/SourceIs.java
@@ -19,12 +19,13 @@ import com.vaadin.ui.Component;
*
* @since 6.3
*/
+@SuppressWarnings("serial")
@ClientCriterion(VDragSourceIs.class)
-public class DragSourceIs extends ClientSideCriterion {
+public class SourceIs extends ClientSideCriterion {
private Component[] component;
- public DragSourceIs(Component... component) {
+ public SourceIs(Component... component) {
this.component = component;
}