Package qubexplorer.ui

Source Code of qubexplorer.ui.SonarQubeFactory

package qubexplorer.ui;

import org.openide.util.NbPreferences;
import qubexplorer.server.SonarQube;
import qubexplorer.ui.options.SonarQubeOptionsPanel;

/**
*
* @author Victor
*/
public final class SonarQubeFactory {
   
    private SonarQubeFactory(){
    }
   
    public static SonarQube createForDefaultServerUrl(){
        String serverUrl=NbPreferences.forModule(SonarQubeOptionsPanel.class).get("address", "http://localhost:9000");
        return new SonarQube(serverUrl);
    }
   
}
TOP

Related Classes of qubexplorer.ui.SonarQubeFactory

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.