Source code: com/port80/eclipse/jdt/graph/IGraphAction.java
1 package com.port80.eclipse.jdt.graph;
2
3 import java.util.Map;
4
5 import org.eclipse.jdt.core.dom.CompilationUnit;
6
7 import com.port80.graph.IGraph;
8
9 /**
10 * @author chrisl
11 *
12 * To change this generated comment edit the template variable "typecomment":
13 * Window>Preferences>Java>Templates.
14 * To enable and disable the creation of type comments go to
15 * Window>Preferences>Java>Code Generation.
16 */
17 public interface IGraphAction {
18 int addRef(String srcpath, CompilationUnit ast, IGraph graph, Map filemap);
19 }