All Downloads are FREE. Search and download functionalities are using the official Maven repository.

soot.jimple.infoflow.callmappers.UnknownCallerCalleeMapper Maven / Gradle / Ivy

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy