View Javadoc
1   package org.vaadin.aceeditor.client;
2   
3   import com.vaadin.shared.communication.ClientRpc;
4   
5   public interface AceEditorClientRpc extends ClientRpc {
6   	public void diff(TransportDiff diff);
7   	
8   	/**
9   	 * Notifies the client that the server-side value has changed.
10  	 * 
11  	 * We always start the "diff roundtrip" from client to server.
12  	 * I guess that's simplest that way (?)
13  	 * 
14  	 */
15  	public void changedOnServer();
16  }