Analysis: Add the dependency graph plugin and base classes
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.graph.core / src / org / eclipse / tracecompass / internal / analysis / graph / core / base / TmfGraphVisitor.java
1 /*******************************************************************************
2 * Copyright (c) 2015 École Polytechnique de Montréal
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 * Francis Giraldeau - Initial implementation and API
11 * Geneviève Bastien - Initial implementation and API
12 *******************************************************************************/
13
14 package org.eclipse.tracecompass.internal.analysis.graph.core.base;
15
16 import org.eclipse.tracecompass.analysis.graph.core.base.ITmfGraphVisitor;
17 import org.eclipse.tracecompass.analysis.graph.core.base.TmfEdge;
18 import org.eclipse.tracecompass.analysis.graph.core.base.TmfVertex;
19
20 /**
21 * An empty implementation of the graph visitor
22 *
23 * @author Geneviève Bastien
24 * @author Francis Giraldeau
25 */
26 public class TmfGraphVisitor implements ITmfGraphVisitor {
27
28 @Override
29 public void visitHead(TmfVertex node) {
30
31 }
32
33 @Override
34 public void visit(TmfVertex node) {
35
36 }
37
38 @Override
39 public void visit(TmfEdge edge, boolean horizontal) {
40
41 }
42
43 }
This page took 0.036911 seconds and 5 git commands to generate.