summaryrefslogtreecommitdiff
path: root/sources/core/time/VSTime.java
blob: 0aebf4a78602341703a957b0327678548a0b33fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * VS is (c) 2008 by Paul C. Buetow
 * vs@dev.buetow.org
 */
package core.time;

// TODO: Auto-generated Javadoc
/**
 * 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();
}