Examples of EdgeChooser


Examples of edu.umd.cs.findbugs.ba.EdgeChooser

*
* @author David Hovemeyer
*/
public class NonImplicitExceptionPostDominatorsAnalysis extends PostDominatorsAnalysis {
    public NonImplicitExceptionPostDominatorsAnalysis(CFG cfg, ReverseDepthFirstSearch rdfs, DepthFirstSearch dfs) {
        super(cfg, rdfs, dfs, new EdgeChooser() {
            @Override
            public boolean choose(Edge edge) {
                return !edge.isExceptionEdge() || edge.isFlagSet(EdgeTypes.EXPLICIT_EXCEPTIONS_FLAG);
            }
        });
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.