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

soot.jimple.infoflow.problems.rules.DummyArrayContext 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 class DummyArrayContext implements IArrayContextProvider {
    public ContainerContext[] getContextForArrayRef(ArrayRef arrayRef, Stmt stmt) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy