soot.jimple.infoflow.sourcesSinks.definitions.NullSourceSinkDefinitionProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of soot-infoflow Show documentation
Show all versions of soot-infoflow Show documentation
Soot extending data flow tracking components for Java
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();
}
}