tmf.ui: Introduce TmfSymbolMapUpdatedSignal
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / symbols / TmfSymbolProviderUpdatedSignal.java
CommitLineData
34170ea3
MK
1/*******************************************************************************
2 * Copyright (c) 2016 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9
10package org.eclipse.tracecompass.tmf.ui.symbols;
11
12import org.eclipse.tracecompass.tmf.core.signal.TmfSignal;
13
14/**
15 * Symbol provider is updated. It will be fired when the symbol provider loads a
16 * new mapping. This should be listened to by all views and viewers that need to
17 * display items using the symbol map.
18 *
19 * @author Matthew Khouzam
20 * @since 2.2
21 */
22public class TmfSymbolProviderUpdatedSignal extends TmfSignal {
23 /**
24 * Constructor
25 *
26 * @param source
27 * the symbol source
28 */
29 public TmfSymbolProviderUpdatedSignal(Object source) {
30 super(source);
31 }
32}
This page took 0.025005 seconds and 5 git commands to generate.