summaryrefslogtreecommitdiff
path: root/sources/core/time/VSTime.java
blob: ce20ecc81ecf88220ae2dec9b41303ba77b04bb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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();
}