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: import net.mygwt.ui.client.event.BaseEvent;
11:
12: /**
13: * Instances of this class are sent as a result of load operations.
14: */
15: public class LoadEvent extends BaseEvent {
16:
17: /**
18: * The source loader.
19: */
20: public Loader loader;
21:
22: /**
23: * The config object.
24: */
25: public LoadConfig config;
26:
27: /**
28: * The load result.
29: */
30: public LoadResult result;
31:
32: public LoadEvent(Loader loader, LoadConfig config, LoadResult result) {
33: this.loader = loader;
34: this.config = config;
35: this.result = result;
36: }
37:
38: }
|