summaryrefslogtreecommitdiff
path: root/sources/core/time/VSTime.java
diff options
context:
space:
mode:
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();
}