View Javadoc
1   package org.vaadin.peter.contextmenu.client;
2   
3   import com.vaadin.shared.communication.ClientRpc;
4   
5   /**
6    * Server to client RPC communication.
7    * 
8    * @author Peter Lehto / Vaadin Ltd
9    * 
10   */
11  public interface ContextMenuClientRpc extends ClientRpc {
12  
13  	/**
14  	 * Sends request to client widget to open context menu to given position.
15  	 * 
16  	 * @param x
17  	 * @param y
18  	 */
19  	public void showContextMenu(int x, int y);
20  }