summaryrefslogtreecommitdiff
path: root/sources/core/time/VSTime.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-25 05:04:07 +0000
committerPaul Buetow <paul@buetow.org>2008-05-25 05:04:07 +0000
commit62fe28f0b0b0c9ebde18a6dc33907889ff3aa21b (patch)
tree7e473f28a7b80494539aabeb6d04e83eb3090a77 /sources/core/time/VSTime.java
parent067fb8bcf8a2d7689d356a591f8e074e6c4840b1 (diff)
initial javadoc.
Diffstat (limited to 'sources/core/time/VSTime.java')
-rw-r--r--sources/core/time/VSTime.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/sources/core/time/VSTime.java b/sources/core/time/VSTime.java
index efeda52..ce20ecc 100644
--- a/sources/core/time/VSTime.java
+++ b/sources/core/time/VSTime.java
@@ -1,6 +1,16 @@
package core.time;
+/** This interface is a guidline for general time format classes.
+ */
public interface VSTime {
+ /** Getter method.
+ *
+ * @return The global time.
+ */
public long getGlobalTime();
+ /** String representation.
+ *
+ * @return The representation of the implementing object as a string.
+ */
public String toString();
}