01: /*
02: * Created on Nov 21, 2003
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.hammurapi.inspectors.metrics.callertrace;
08:
09: import java.util.Vector;
10:
11: /**
12: * @author mucbj0
13: *
14: * To change the template for this generated type comment go to
15: * Window>Preferences>Java>Code Generation>Code and Comments
16: */
17: public interface SearchMethod {
18:
19: // public TraceList extractTraceList( Object nodeA );
20: public TraceList extractTraceListForKey(String nodeA);
21:
22: public Vector traverseFor(Object nodeA);
23:
24: public void setAdjacencyMatrix(AdjacencyMatrix a);
25:
26: public TraceList getResultTraceList();
27:
28: public void setResultTraceList(TraceList resultTraceList);
29: }
|