tmf: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / lookup / ITmfSourceLookup.java
1 /*******************************************************************************
2 * Copyright (c) 2013 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are made
5 * 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 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12 package org.eclipse.linuxtools.tmf.core.event.lookup;
13
14
15 /**
16 * Interface for events to implement to provide information for source lookup.
17 *
18 * @author Bernd Hufmann
19 * @since 2.0
20 */
21 public interface ITmfSourceLookup {
22 /**
23 * Returns a call site instance.
24 *
25 * @return a call site instance.
26 */
27 public ITmfCallsite getCallsite();
28 }
This page took 0.031885 seconds and 5 git commands to generate.