01: /*
02: * MyGWT Widget Library
03: * Copyright(c) 2007, MyGWT.
04: * licensing@mygwt.net
05: *
06: * http://mygwt.net/license
07: */
08: package net.mygwt.ui.client.data;
09:
10: /**
11: * Callback used when sending remote data back to the client.
12: */
13: public interface DataCallback {
14:
15: /**
16: * Sets the load results.
17: *
18: * @param result the result of the data load
19: */
20: public void setResult(LoadResult result);
21:
22: }
|