make classes public. Fixes #32

This commit is contained in:
Manu Sridharan 2013-09-16 10:32:29 -07:00
parent 898e1c3810
commit 8984637b86
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ import com.ibm.wala.util.warnings.Warnings;
/**
* Logic to interpret "factory" methods in context.
*/
class FactoryBypassInterpreter extends AbstractReflectionInterpreter {
public class FactoryBypassInterpreter extends AbstractReflectionInterpreter {
/**
* A Map from CallerSiteContext -> Set <TypeReference>represents the types a factory method might create in a particular context

View File

@ -26,7 +26,7 @@ import com.ibm.wala.util.intset.IntSetUtil;
/**
* A {@link ContextSelector} to intercept calls to Object.getClass()
*/
class GetClassContextSelector implements ContextSelector {
public class GetClassContextSelector implements ContextSelector {
public final static MethodReference GET_CLASS = MethodReference.findOrCreate(TypeReference.JavaLangObject, "getClass",
"()Ljava/lang/Class;");