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

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

There is a newer version: 2.9.0
Show newest version
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 getSources();
	
	/**
	 * Gets a set of all sinks registered in the provider
	 * @return A set of all sinks registered in the provider
	 */
	public Set 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 getAllMethods();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy