tweak comments

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@3414 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
sjfink 2009-04-06 18:39:31 +00:00
parent 50a19ca3f9
commit 19acbba592
1 changed files with 3 additions and 3 deletions

View File

@ -15,10 +15,7 @@ import org.eclipse.core.runtime.IProgressMonitor;
import com.ibm.wala.ipa.callgraph.propagation.PointerAnalysis; import com.ibm.wala.ipa.callgraph.propagation.PointerAnalysis;
/** /**
*
* Basic interface for an object that can build a call graph. * Basic interface for an object that can build a call graph.
*
* @author sfink
*/ */
public interface CallGraphBuilder { public interface CallGraphBuilder {
/** /**
@ -36,6 +33,9 @@ public interface CallGraphBuilder {
*/ */
public PointerAnalysis getPointerAnalysis(); public PointerAnalysis getPointerAnalysis();
/**
* @return A cache of various analysis artifacts used during call graph construction.
*/
public AnalysisCache getAnalysisCache(); public AnalysisCache getAnalysisCache();
} }