Timestamp
From FreeMind
Revision as of 12:39, 3 February 2010 by Dan Polansky (talk | contribs) (+since 0.8.0; +links to CVS)
Each node gets two timestamps: one for the moment of creation and one for the moment of the last change.
Timestamps were introduced in FreeMind 0.8.0.
Menu
- Tools > Show Modification Times
Implementation
Classes and methods that implement timestamps:
- accessories.plugins.CreationModificationPlugin[1]
- MinMapNode.getHistoryInformation()
- freemind.modes.HistoryInformation[2]
Storage in XML
Storage of timestamps in XML: in the attributes "CREATED" and "MODIFIED":
<node CREATED="1252659099149" ID="ID_989353638" MODIFIED="1252659099149" TEXT="New Mindmap">
The number stored in the timestamp is the number of milliseconds since January 1, 1970, 00:00:00 GMT.
The number stored in the timestamp is obtained by calling "new Date().getTime()"[3].