Timestamp
From FreeMind
Each node gets two timestamps: one for the moment of creation and one for the moment of the last change.
[edit]
Menu
- Tools > Show Modification Times
[edit]
Implementation
Classes and methods that implement timestamps:
- accessories.plugins.CreationModificationPlugin
- MinMapNode.getHistoryInformation()
- freemind.modes.HistoryInformation
[edit]
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()"[1] (http://java.sun.com/j2se/1.4.2/docs/api/java/util/Date.html#getTime()).
