ss: Move plugins to Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / signal / TmfTimestampFormatUpdateSignal.java
CommitLineData
f8177ba2
FC
1/*******************************************************************************
2 * Copyright (c) 2012 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 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.core.signal;
14
15/**
16 * The default timestamp/interval format was modified
17 *
18 * @author Francois Chouinard
19 * @version 1.0
20 * @since 2.0
21 */
22public class TmfTimestampFormatUpdateSignal extends TmfSignal {
23
24 /**
25 * @param source the signal source
26 */
27 public TmfTimestampFormatUpdateSignal(Object source) {
28 super(source);
29 }
30
31}
This page took 0.057343 seconds and 5 git commands to generate.