Provided access to the ContextItem data structures.

git-svn-id: https://wala.svn.sourceforge.net/svnroot/wala/trunk@2567 f5eafffb-2e1d-0410-98e4-8ec43c5233c4
This commit is contained in:
egeay 2008-02-12 21:50:33 +00:00
parent 43de249423
commit 245ec9c7d5
1 changed files with 9 additions and 0 deletions

View File

@ -69,4 +69,13 @@ public class CallString implements ContextItem {
return false;
}
public CallSiteReference[] getCallSiteRefs() {
return this.sites;
}
public IMethod[] getMethods() {
return this.methods;
}
}