Subversion Repository Public Repository

litesoft

Diff Revisions 864 vs 893 for /trunk/Java/core/Anywhere/src/org/litesoft/core/simpletypes/temporal/TimestampHMSM.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3 import org.litesoft.core.typeutils.*;
4 4
5 5 /**
6 - * A Timestamp with resolution to the Second ("Wall" relative) (with tracking for the Offset Minutes from Zulu).
6 + * A Timestamp with resolution to the MilliSec ("Wall" relative) (with tracking for the Offset Minutes from Zulu).
7 7 * <p/>
8 8 * Note: This class supports Gregorian dates only. As such when working with
9 9 * Java Util Date(s) (or it's descendants) the local (or "Wall") date & time is all that is considered!
  @@ -18,7 +18,7 @@
18 18 this( 0, 0, 0, 0, 0, 0, 0, 0 );
19 19 }
20 20
21 - public TimestampHMSM( int pYear, int pMonth, int pDay, int pZuluOffsetMins, int pHour, int pMin, int pSec, int pMilliSec )
21 + private TimestampHMSM( int pYear, int pMonth, int pDay, int pZuluOffsetMins, int pHour, int pMin, int pSec, int pMilliSec )
22 22 {
23 23 super( pYear, pMonth, pDay, pZuluOffsetMins, pHour, pMin, pSec, pMilliSec );
24 24 }