private static String lastClassName = null;
protected void cache(String className) throws Exception {
if (lastClassName != className) {
ClassFlow cf = new ClassFlow(className, Detector.DEFAULT);
stflows = cf.analyze(/* forceAnalysis = */true);
lastClassName = className;
}
}
protected MethodFlow getFlow(String methodName) {