01: /*
02: * GWT-Ext Widget Library
03: * Copyright(c) 2007-2008, GWT-Ext.
04: * licensing@gwt-ext.com
05: *
06: * http://www.gwt-ext.com/license
07: */
08: package com.gwtext.sample.showcase2.client.chooser;
09:
10: /**
11: * Interface that provides the callback name so that it can be called once the image is selected.
12: *
13: * @author mlim
14: */
15: public interface ImageChooserCallback {
16: /**
17: * This method will be called by the dialog upon an image been selected
18: *
19: * @param data is the data information of the selected image
20: */
21: public void onImageSelection(ImageData data);
22: }
|