X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tmf%2Forg.eclipse.tracecompass.tmf.ui%2Fsrc%2Forg%2Feclipse%2Ftracecompass%2Ftmf%2Fui%2Fsymbols%2FTmfSymbolProviderUpdatedSignal.java;fp=tmf%2Forg.eclipse.tracecompass.tmf.ui%2Fsrc%2Forg%2Feclipse%2Ftracecompass%2Ftmf%2Fui%2Fsymbols%2FTmfSymbolProviderUpdatedSignal.java;h=e00bf2b5c96b5d292359435574d9d826a8a563d7;hb=34170ea3ffd4bae252f5597560831bd4c6bee484;hp=0000000000000000000000000000000000000000;hpb=ff578d8e2572ff02f84b79fc89fabefc3e350247;p=deliverable%2Ftracecompass.git diff --git a/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/symbols/TmfSymbolProviderUpdatedSignal.java b/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/symbols/TmfSymbolProviderUpdatedSignal.java new file mode 100644 index 0000000000..e00bf2b5c9 --- /dev/null +++ b/tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/symbols/TmfSymbolProviderUpdatedSignal.java @@ -0,0 +1,32 @@ +/******************************************************************************* + * Copyright (c) 2016 Ericsson + * + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + *******************************************************************************/ + +package org.eclipse.tracecompass.tmf.ui.symbols; + +import org.eclipse.tracecompass.tmf.core.signal.TmfSignal; + +/** + * Symbol provider is updated. It will be fired when the symbol provider loads a + * new mapping. This should be listened to by all views and viewers that need to + * display items using the symbol map. + * + * @author Matthew Khouzam + * @since 2.2 + */ +public class TmfSymbolProviderUpdatedSignal extends TmfSignal { + /** + * Constructor + * + * @param source + * the symbol source + */ + public TmfSymbolProviderUpdatedSignal(Object source) { + super(source); + } +}