tmf.core: simplify timestamp implementations
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / timestamp / TmfSecondTimestamp.java
1 /*******************************************************************************
2 * Copyright (c) 2012, 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Francois Chouinard - Initial API and implementation
11 * Francois Chouinard - Standardize on the default toString()
12 *******************************************************************************/
13
14 package org.eclipse.tracecompass.tmf.core.timestamp;
15
16 /**
17 * A simplified timestamp where scale and precision are set to 0.
18 *
19 * @author Francois Chouinard
20 * @since 2.0
21 */
22 public class TmfSecondTimestamp extends TmfTimestamp {
23
24 private final long fValue;
25
26 // ------------------------------------------------------------------------
27 // Constructors
28 // ------------------------------------------------------------------------
29
30 /**
31 * Default constructor (value = 0)
32 */
33 public TmfSecondTimestamp() {
34 this(0);
35 }
36
37 /**
38 * Full constructor
39 *
40 * @param value
41 * the timestamp value
42 */
43 public TmfSecondTimestamp(final long value) {
44 fValue = value;
45 }
46
47 @Override
48 public int getScale() {
49 return ITmfTimestamp.SECOND_SCALE;
50 }
51
52 @Override
53 public long getValue() {
54 return fValue;
55 }
56 }
This page took 0.033361 seconds and 5 git commands to generate.