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

soot.jimple.infoflow.aliasing.AbstractAliasStrategy Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package soot.jimple.infoflow.aliasing;

import soot.SootMethod;
import soot.jimple.infoflow.InfoflowManager;

/**
 * Common base class for alias strategies
 * 
 * @author Steven Arzt
 */
public abstract class AbstractAliasStrategy implements IAliasingStrategy {

	protected final InfoflowManager manager;
	
	public AbstractAliasStrategy(InfoflowManager manager) {
		this.manager = manager;
	}
	
	@Override
	public boolean hasProcessedMethod(SootMethod method) {
		return true;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy