Package org.netbeans.server.uihandler.api.bugs

Examples of org.netbeans.server.uihandler.api.bugs.BugReporter


     * returns instance of BugReporter for Issuezilla
     *
     * @return
     */
    public static BugzillaReporter getDefaultReporter() {
        BugReporter reporter = Lookup.getDefault().lookup(BugReporter.class);
        if (reporter == null) {
            return new BugzillaReporter(new LogReporter());
        }
        return new BugzillaReporter(reporter);
    }
View Full Code Here

TOP

Related Classes of org.netbeans.server.uihandler.api.bugs.BugReporter

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.