Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / signal / TmfTimestampFormatUpdateSignal.java
CommitLineData
f8177ba2 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2012, 2014 Ericsson
f8177ba2
FC
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
2bdf0193 13package org.eclipse.tracecompass.tmf.core.signal;
f8177ba2
FC
14
15/**
16 * The default timestamp/interval format was modified
17 *
18 * @author Francois Chouinard
f8177ba2
FC
19 */
20public class TmfTimestampFormatUpdateSignal extends TmfSignal {
21
22 /**
23 * @param source the signal source
24 */
25 public TmfTimestampFormatUpdateSignal(Object source) {
26 super(source);
27 }
28
29}
This page took 0.059477 seconds and 5 git commands to generate.