![JAR search and dependency download from the Maven repository](/logo.png)
soot.jimple.infoflow.sourcesSinks.definitions.ISourceSinkDefinition 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;
/**
* Abstract interface for soure/sink definitions
*
* @author Steven Arzt
*
*/
public interface ISourceSinkDefinition {
/**
* Sets the category to which this source or sink belonga
*
* @param category The category to which this source or sink belonga
*/
public void setCategory(ISourceSinkCategory category);
/**
* Gets the category to which this source or sink belonga
*
* @return The category to which this source or sink belonga
*/
public ISourceSinkCategory getCategory();
/**
* Creates a definition which is a subset of this definition that only contains
* the sources
*
* @return The source-only subset of this definition
*/
public abstract ISourceSinkDefinition getSourceOnlyDefinition();
/**
* Creates a definition which is a subset of this definition that only contains
* the sinks
*
* @return The sink-only subset of this definition
*/
public abstract ISourceSinkDefinition getSinkOnlyDefinition();
/**
* Merges the source and sink definitions of the given definition object into
* this definition object
*
* @param other The definition object to merge
*/
public abstract void merge(ISourceSinkDefinition other);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy