e00bf2b5c96b5d292359435574d9d826a8a563d7
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / symbols / TmfSymbolProviderUpdatedSignal.java
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
10 package org.eclipse.tracecompass.tmf.ui.symbols;
11
12 import 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 */
22 public 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.030752 seconds and 4 git commands to generate.