From: <Jan...@us...> - 2007-03-04 17:28:34
|
Revision: 594 http://svn.sourceforge.net/magicmap/?rev=594&view=rev Author: Jan_fride Date: 2007-03-04 09:28:09 -0800 (Sun, 04 Mar 2007) Log Message: ----------- new things. Modified Paths: -------------- trunk/magicmapclient/src/net/sf/magicmap/client/model/node/InfoObject.java Modified: trunk/magicmapclient/src/net/sf/magicmap/client/model/node/InfoObject.java =================================================================== --- trunk/magicmapclient/src/net/sf/magicmap/client/model/node/InfoObject.java 2007-03-02 21:29:04 UTC (rev 593) +++ trunk/magicmapclient/src/net/sf/magicmap/client/model/node/InfoObject.java 2007-03-04 17:28:09 UTC (rev 594) @@ -1,12 +1,12 @@ /** - * + * */ package net.sf.magicmap.client.model.node; -import java.util.Set; /** + * * @author Johannes Zapotoczky (joh...@za...) * @author Jan Friderici * @@ -20,7 +20,7 @@ String getInfoUrl(); /** - * + * * @return an url to an webservice. */ String getServiceUrl(); @@ -34,22 +34,45 @@ /** * usually the shortcut icon. - * + * * @return the url to a smale image. */ String getDepiction(); /** * a Description of the info. - * + * * @return */ String getDescription(); /** * the title of the infoobject. - * + * * @return a title or "<notitle>" */ String getInfoTitle(); + + /** + * the last update of this object + * + * @return the milliseconds + */ + long getLastUpdate(); + + /** + * + * @return + */ + long getCreationTime(); + + /** + * + * @return + */ + State getState(); + + public enum State{ + CREATED, LOADED, INVALID; + } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |