blob: c5a2805d9997721de91403f5ca4b3cc0fec14d69 (
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;
/**
* 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();
}
|