|
From: Johannes Z. <jza...@us...> - 2006-02-28 11:23:24
|
Update of /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/interfaces In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23808/src/net/sf/magicmap/client/interfaces Modified Files: FetchPositionsCallback.java ServerPollerListener.java Log Message: added support for info objects and rfid antennas and tags Index: FetchPositionsCallback.java =================================================================== RCS file: /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/interfaces/FetchPositionsCallback.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** FetchPositionsCallback.java 26 Feb 2006 10:20:57 -0000 1.4 --- FetchPositionsCallback.java 28 Feb 2006 11:23:16 -0000 1.5 *************** *** 5,8 **** --- 5,10 ---- package net.sf.magicmap.client.interfaces; + import java.util.Collection; + import net.sf.magicmap.server.dto.GeoPointDTO; import net.sf.magicmap.server.dto.MapDTO; *************** *** 39,42 **** --- 41,61 ---- */ public void geoPointsFetches(GeoPointDTO[] geoPoses); + + + /** + * + * @param infoObjects + */ + public void infoPointsFetched(Collection infoObjects); + + /** + * @param rfidAntennas + */ + public void rfidAntennasFetched(Collection rfidAntennas); + + /** + * @param rfidTags + */ + public void rfidTagsFetched(Collection rfidTags); } \ No newline at end of file Index: ServerPollerListener.java =================================================================== RCS file: /cvsroot/magicmap/magicmapclient/src/net/sf/magicmap/client/interfaces/ServerPollerListener.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ServerPollerListener.java 26 Feb 2006 10:20:57 -0000 1.4 --- ServerPollerListener.java 28 Feb 2006 11:23:16 -0000 1.5 *************** *** 5,8 **** --- 5,11 ---- package net.sf.magicmap.client.interfaces; + import net.sf.magicmap.client.model.node.InfoObject; + import net.sf.magicmap.client.model.node.RFIDAntenna; + import net.sf.magicmap.client.model.node.RFIDTag; import net.sf.magicmap.server.dto.GeoPointDTO; import net.sf.magicmap.server.dto.MapDTO; *************** *** 45,49 **** public void geoPosCreatedOrUpdatedOrDeleted(GeoPointDTO pointDTO); ! // public void geoPointCreatedOrUpdatedOrDeleted(GeoPointDTO geoPoint); } \ No newline at end of file --- 48,65 ---- public void geoPosCreatedOrUpdatedOrDeleted(GeoPointDTO pointDTO); ! /** ! * @param infoObject ! */ ! public void infoObjectCreatedorUpdatedOrDeleted(InfoObject infoObject); ! ! /** ! * @param antenna ! */ ! public void rfidAntennaCreatedOrUpdatedOrDeleted(RFIDAntenna antenna); ! ! /** ! * @param tag ! */ ! public void rfidTagCreatedOrUpdatedOrDeleted(RFIDTag tag); } \ No newline at end of file |