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

soot.jimple.infoflow.nativeCallHandler.AbstractNativeCallHandler Maven / Gradle / Ivy

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

import soot.jimple.infoflow.InfoflowManager;

/**
 * Abstract base class for all native call handlers
 * 
 * @author Steven Arzt
 *
 */
public abstract class AbstractNativeCallHandler implements INativeCallHandler {

	/**
	 * Data flow manager that gives access to internal solver objects
	 */
	protected InfoflowManager manager;
	
	@Override
	public void initialize(InfoflowManager manager) {
		this.manager = manager;
	}
	
	@Override
	public void shutdown() {
		//
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy