From: Johannes Z. <jza...@us...> - 2006-02-20 08:49:51
|
Update of /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/interfaces In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13513/src/net/sf/magicmap/client/interfaces Modified Files: MapNamesCallback.java Log Message: Changes to show maps in the outline view tree Refactorings Index: MapNamesCallback.java =================================================================== RCS file: /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/interfaces/MapNamesCallback.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MapNamesCallback.java 16 Jan 2005 16:01:25 -0000 1.1 --- MapNamesCallback.java 20 Feb 2006 08:49:48 -0000 1.2 *************** *** 6,16 **** /** * @author thuebner */ public interface MapNamesCallback { ! public void mapNamesReceived(String[] names); ! ! public void getMapNamesError(Exception e); } \ No newline at end of file --- 6,31 ---- /** + * * @author thuebner */ public interface MapNamesCallback { ! /** ! * Open the map dialog ! * @param names - the names of the maps ! */ ! public void openMapDialog(String[] names); ! ! /** ! * Refresh the maps in the outline view ! * @param names - the names of the maps ! */ ! public void addMapNamesToOutline(String[] names); + /** + * Get the error msg of the failed map names retrievement + * @param e - the occurred exception + */ + public void getMapNamesError(Exception e); + } \ No newline at end of file |