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

soot.jimple.infoflow.problems.rules.IArrayContextProvider Maven / Gradle / Ivy

The newest version!
package soot.jimple.infoflow.problems.rules;

import soot.jimple.ArrayRef;
import soot.jimple.Stmt;
import soot.jimple.infoflow.data.ContainerContext;

public interface IArrayContextProvider {
    /**
     * Returns the context definition for an array
     *
     * @param arrayRef array reference
     * @param stmt
     * @return context definition
     */
    ContainerContext[] getContextForArrayRef(ArrayRef arrayRef, Stmt stmt);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy