![JAR search and dependency download from the Maven repository](/logo.png)
soot.jimple.infoflow.sourcesSinks.definitions.ISourceSinkDefinitionProvider 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.Set;
/**
* Common interface for all classes that support loading source and sink
* definitions
*
* @author Steven Arzt
*
*/
public interface ISourceSinkDefinitionProvider {
/**
* Gets a set of all sources registered in the provider
*
* @return A set of all sources registered in the provider
*/
public Set extends ISourceSinkDefinition> getSources();
/**
* Gets a set of all sinks registered in the provider
*
* @return A set of all sinks registered in the provider
*/
public Set extends ISourceSinkDefinition> getSinks();
/**
* Gets all methods for which there are source/sink definitions
*
* @return A set containing all methods for which there is a source/sink
* definition. This also includes methods explicitly labeled as
* "neither".
*/
public Set extends ISourceSinkDefinition> getAllMethods();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy