Analysis: Add the dependency graph plugin and base classes
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.graph.core / src / org / eclipse / tracecompass / analysis / graph / core / base / IGraphWorker.java
CommitLineData
68761620
FG
1/*******************************************************************************
2 * Copyright (c) 2015 École Polytechnique de Montréal
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13package org.eclipse.tracecompass.analysis.graph.core.base;
14
15/**
16 * Interface that the objects in a graph may implement
17 *
18 * @author Geneviève Bastien
19 */
20public interface IGraphWorker {
21
22 /**
23 * Get the host ID of the trace this worker belongs to
24 *
25 * @return The host ID of the trace this worker belongs to
26 */
27 String getHostId();
28
29}
This page took 0.024152 seconds and 5 git commands to generate.