summaryrefslogtreecommitdiff
path: root/sources/core/time/VSTime.java
blob: 24f9b7d07df416d63d525e8e03e6e4732e4a806a (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();
}