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

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

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 - 2025 Weber Informatics LLC | Privacy Policy