diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-25 05:04:07 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-25 05:04:07 +0000 |
| commit | 62fe28f0b0b0c9ebde18a6dc33907889ff3aa21b (patch) | |
| tree | 7e473f28a7b80494539aabeb6d04e83eb3090a77 /sources/core/time/VSTime.java | |
| parent | 067fb8bcf8a2d7689d356a591f8e074e6c4840b1 (diff) | |
initial javadoc.
Diffstat (limited to 'sources/core/time/VSTime.java')
| -rw-r--r-- | sources/core/time/VSTime.java | 10 |
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(); } |
