tmf: Support dynamic marker event sources
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / signal / TmfMarkerEventSourceUpdatedSignal.java
1 /*******************************************************************************
2 * Copyright (c) 2016 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 * Patrick Tasse - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.core.signal;
14
15 /**
16 * A marker event source has been updated
17 *
18 * @since 2.1
19 */
20 public class TmfMarkerEventSourceUpdatedSignal extends TmfSignal {
21
22 /**
23 * @param source the signal source
24 */
25 public TmfMarkerEventSourceUpdatedSignal(Object source) {
26 super(source);
27 }
28
29 }
This page took 0.030681 seconds and 5 git commands to generate.