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

soot.jimple.infoflow.solver.memory.IMemoryManagerFactory 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.PathDataErasureMode;

/**
 * Common interface for all memory manager factories
 * 
 * @author Steven Arzt
 *
 */
public interface IMemoryManagerFactory {
	
	/**
	 * Creates a new instance of the memory manager
	 * @param tracingEnabled True if performance tracing data shall be recorded
	 * @param erasePathData Specifies whether data for tracking paths (current
	 * statement, corresponding call site) shall be erased.
	 * @return The memory manager
	 */
	public IMemoryManager getMemoryManager(
			boolean tracingEnabled, PathDataErasureMode erasePathData);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy