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

soot.jimple.infoflow.sourcesSinks.definitions.NullSourceSinkDefinitionProvider Maven / Gradle / Ivy

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

import java.util.Collections;
import java.util.Set;

/**
 * Empty provider that simulates empty lists of sources and sinks
 * 
 * @author Steven Arzt
 *
 */
public class NullSourceSinkDefinitionProvider implements
		ISourceSinkDefinitionProvider {

	@Override
	public Set getSources() {
		return Collections.emptySet();
	}

	@Override
	public Set getSinks() {
		return Collections.emptySet();
	}

	@Override
	public Set getAllMethods() {
		return Collections.emptySet();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy