Revision 5,
468 bytes
checked in by wojtekp, 14 years ago
(diff) |
|
-
Property svn:mime-type set to
text/plain
|
Rev | Line | |
---|
[5] | 1 | package gssim.schedframe.scheduling.plugin.local; |
---|
| 2 | |
---|
| 3 | import org.joda.time.DateTime; |
---|
| 4 | |
---|
| 5 | import schedframe.scheduling.plugin.local.TimeOperations; |
---|
| 6 | |
---|
| 7 | public class GssimTimeOperations extends TimeOperations { |
---|
| 8 | |
---|
| 9 | public GssimTimeOperations(){ |
---|
| 10 | this(0); |
---|
| 11 | } |
---|
| 12 | |
---|
| 13 | public GssimTimeOperations(long timeDelta){ |
---|
| 14 | super(timeDelta); |
---|
| 15 | } |
---|
| 16 | |
---|
| 17 | /** |
---|
| 18 | * Get Calendar object representing current logic time |
---|
| 19 | * @return current time |
---|
| 20 | */ |
---|
| 21 | public DateTime getTime() { |
---|
| 22 | return new DateTime(); |
---|
| 23 | } |
---|
| 24 | |
---|
| 25 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.