allow subclasses to access cg and pointeranalysis (make fields protected instead of private)

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2129 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
yahave 2007-12-09 16:53:11 +00:00
parent 2f0c0072ba
commit 3603e9b4a2
1 changed files with 2 additions and 2 deletions

View File

@ -119,12 +119,12 @@ public abstract class AbstractAnalysisEngine implements AnalysisEngine {
/**
* Governing call graph
*/
private CallGraph cg;
protected CallGraph cg;
/**
* Results of pointer analysis
*/
private PointerAnalysis pointerAnalysis;
protected PointerAnalysis pointerAnalysis;
/**
* Factory to create graph view of flow of pointers in the heap.