aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/shared/ui/splitpanel/AbstractSplitPanelRpc.java
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-13 18:24:51 +0300
committerArtur Signell <artur@vaadin.com>2012-08-13 18:34:53 +0300
commit9bc14b90a3ec265587562f2886ec3da1cd904f44 (patch)
treef823bf5a9a6119b4036bb0facedecdad936f33e4 /src/com/vaadin/shared/ui/splitpanel/AbstractSplitPanelRpc.java
parent4a1d729534e1232088529afcd48360d868093a67 (diff)
downloadvaadin-framework-9bc14b90a3ec265587562f2886ec3da1cd904f44.tar.gz
vaadin-framework-9bc14b90a3ec265587562f2886ec3da1cd904f44.zip
Moved com.vaadin.shared files to a shared src folder (#9299)
Diffstat (limited to 'src/com/vaadin/shared/ui/splitpanel/AbstractSplitPanelRpc.java')
-rw-r--r--src/com/vaadin/shared/ui/splitpanel/AbstractSplitPanelRpc.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/com/vaadin/shared/ui/splitpanel/AbstractSplitPanelRpc.java b/src/com/vaadin/shared/ui/splitpanel/AbstractSplitPanelRpc.java
deleted file mode 100644
index e2ebcb0de3..0000000000
--- a/src/com/vaadin/shared/ui/splitpanel/AbstractSplitPanelRpc.java
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
-@VaadinApache2LicenseForJavaFiles@
- */
-package com.vaadin.shared.ui.splitpanel;
-
-import com.vaadin.shared.MouseEventDetails;
-import com.vaadin.shared.communication.ServerRpc;
-
-public interface AbstractSplitPanelRpc extends ServerRpc {
-
- /**
- * Called when the position has been updated by the user.
- *
- * @param position
- * The new position in % if the current unit is %, in px
- * otherwise
- */
- public void setSplitterPosition(float position);
-
- /**
- * Called when a click event has occurred on the splitter.
- *
- * @param mouseDetails
- * Details about the mouse when the event took place
- */
- public void splitterClick(MouseEventDetails mouseDetails);
-
-} \ No newline at end of file