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

soot.jimple.infoflow.solver.memory.DefaultMemoryManagerFactory Maven / Gradle / Ivy

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

import soot.Unit;
import soot.jimple.infoflow.data.Abstraction;
import soot.jimple.infoflow.data.FlowDroidMemoryManager;
import soot.jimple.infoflow.data.FlowDroidMemoryManager.PathDataErasureMode;

/**
 * A factory class that creates instances of the default FlowDroid memory
 * manager
 * 
 * @author Steven Arzt
 *
 */
public class DefaultMemoryManagerFactory implements IMemoryManagerFactory {

	/**
	 * Constructs a new instance of the AccessPathManager class
	 */
	public DefaultMemoryManagerFactory() {
	}

	@Override
	public IMemoryManager getMemoryManager(boolean tracingEnabled,
			PathDataErasureMode erasePathData) {
		return new FlowDroidMemoryManager(tracingEnabled, erasePathData);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy