blob: 3ce5b5d775011821eef3f4d1c963c7242618c8c4 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2013, 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Bernd Hufmann - Initial API and implementation
**********************************************************************/
package org.eclipse.tracecompass.tmf.ui.viewers.xycharts;
import java.text.FieldPosition;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.eclipse.tracecompass.tmf.core.timestamp.TmfTimestampFormat;
/**
* SimpleDateFormat class for displaying time information in SWT charts
* using the TmfTimestampFormat class.
*
* @author Bernd Hufmann
*/
public class TmfChartTimeStampFormat extends SimpleDateFormat {
// ------------------------------------------------------------------------
// Constants
// ------------------------------------------------------------------------
private static final long serialVersionUID = 3719743469686142387L;
// ------------------------------------------------------------------------
// Attributes
// ------------------------------------------------------------------------
private long fOffset;
// ------------------------------------------------------------------------
// Constructors
// ------------------------------------------------------------------------
/**
* Standard Constructor
*
* @param offset
* offset to apply before formatting time (time = time + offset)
*/
public TmfChartTimeStampFormat(long offset) {
fOffset = offset;
}
// ------------------------------------------------------------------------
// Operations
// ------------------------------------------------------------------------
@Override
public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition) {
long time = date.getTime() + fOffset;
toAppendTo.append(TmfTimestampFormat.getDefaulTimeFormat().format(time));
return toAppendTo;
}
}