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

soot.jimple.infoflow.problems.rules.AbstractTaintPropagationRule Maven / Gradle / Ivy

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

import soot.jimple.infoflow.InfoflowManager;
import soot.jimple.infoflow.aliasing.Aliasing;
import soot.jimple.infoflow.data.Abstraction;
import soot.jimple.infoflow.problems.TaintPropagationResults;

/**
 * Abstract base class for all taint propagation rules
 * 
 * @author Steven Arzt
 *
 */
public abstract class AbstractTaintPropagationRule implements ITaintPropagationRule {

	protected final InfoflowManager manager;
	protected final Abstraction zeroValue;
	protected final TaintPropagationResults results;

	public AbstractTaintPropagationRule(InfoflowManager manager, Abstraction zeroValue,
			TaintPropagationResults results) {
		this.manager = manager;
		this.zeroValue = zeroValue;
		this.results = results;
	}

	protected InfoflowManager getManager() {
		return this.manager;
	}

	protected Aliasing getAliasing() {
		return this.manager.getAliasing();
	}

	protected Abstraction getZeroValue() {
		return this.zeroValue;
	}

	protected TaintPropagationResults getResults() {
		return this.results;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy