Package net.sourceforge.processdash.tool.bridge.client

Examples of net.sourceforge.processdash.tool.bridge.client.WorkingDirectory


    private void loadConfigurationInformation() {
        dataDirectory = null;
        dataURL = null;
        configFile = new File(DashController.getSettingsFileName());

        WorkingDirectory workingDir = ((ProcessDashboard) getDashboardContext())
                .getWorkingDirectory();
        if (workingDir instanceof BridgedWorkingDirectory) {
            BridgedWorkingDirectory bwd = (BridgedWorkingDirectory) workingDir;
            dataURL = bwd.getDescription();
            dataDirectory = bwd.getTargetDirectory();
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.tool.bridge.client.WorkingDirectory

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.