Package edu.umd.cs.findbugs.util

Examples of edu.umd.cs.findbugs.util.NotImplementedYetException


        case PACKAGE:
            return new ClassMatcher("~" + value + "\\.[^.]+");
        case PRIORITY:
            return new PriorityMatcher(value);
        case PROJECT:
            throw new NotImplementedYetException("Matchers for Projects not supported yet");

        case TYPE:
            return new BugMatcher(null, value, null);

        case DIVIDER:
        default:
            throw new NotImplementedYetException("No matcher for " + s);

        }

    }
View Full Code Here

TOP

Related Classes of edu.umd.cs.findbugs.util.NotImplementedYetException

Copyright © 2018 www.massapicom. 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.