soot.jimple.infoflow.callmappers.UnknownCallerCalleeMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot-infoflow Show documentation
Show all versions of soot-infoflow Show documentation
Soot extending data flow tracking components for Java
The newest version!
package soot.jimple.infoflow.callmappers;
/**
* Is applicaple when we have no mapping whatsoever.
* @author Marc Miltenberger
*/
public class UnknownCallerCalleeMapper implements ICallerCalleeArgumentMapper {
public static final ICallerCalleeArgumentMapper INSTANCE = new UnknownCallerCalleeMapper();
@Override
public int getCallerIndexOfCalleeParameter(int calleeParamIndex) {
return UNKNOWN;
}
@Override
public int getCalleeIndexOfCallerParameter(int callerParameterIndex) {
return UNKNOWN;
}
}