blob: d46e0e4b88aa5b2b396ae9fefbfc8f87039e5863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package core.time;
/**
* This interface is a guidline for general time format classes.
*
* @author Paul C. Buetow
*/
public interface VSTime {
/**
* Gets the global time.
*
* @return The global time
*/
public long getGlobalTime();
/**
* Returns a string representation.
*
* @return The representation of the implementing object as a string
*/
public String toString();
}
|