Package com.softwarepearls.lego.comms.net.svs

Examples of com.softwarepearls.lego.comms.net.svs.SourceViewerService


        // get TCP port number from persistant configuration
        final Preferences pluginPreferences = NbPreferences.forModule(PluginConstants.class);
        final int tcpPortNumber = pluginPreferences.getInt(TCP_PORT_KEY, DEFAULT_PORT_NUMBER);

        try {
            sourceViewerService = new SourceViewerService(new JavaEditorBridgeImpl(), tcpPortNumber);
            sourceViewerService.start();
            ServiceStatus.getInstance().setServiceRunning(true);
        } catch (final IllegalStateException illegalStateException) {
            ServiceStatus.getInstance().setServiceRunning(false);
        }
View Full Code Here

TOP

Related Classes of com.softwarepearls.lego.comms.net.svs.SourceViewerService

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.