Use generated Util class to get the RPC Async interface.
[online-glom:gwt-glom.git] / src / main / java / org / glom / web / client / LibGlomService.java
1 package org.glom.web.client;
2
3 import java.util.List;
4
5 import com.google.gwt.user.client.rpc.RemoteService;
6 import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
7
8 @RemoteServiceRelativePath("libGlom")
9 public interface LibGlomService extends RemoteService {
10
11         GlomDocument getGlomDocument();
12
13         String[] getLayoutListHeaders(String table);
14
15         List<String[]> getTableData(int start, int length, String table);
16
17 }