Package fr.soleil.salsa.client.preferences

Examples of fr.soleil.salsa.client.preferences.UIPreferences


        return null;
    }

    @Override
    public void removeBookmark(String bookmark) {
        UIPreferences uiPreferences = getUiPreferences();
        // Load the scanServerName
        if (uiPreferences != null) {
            uiPreferences.removeBookmark(bookmark);
        }
    }
View Full Code Here


        }
    }

    @Override
    public void removeEntryFromBookmark(String bookmark, String configPath) {
        UIPreferences uiPreferences = getUiPreferences();
        // Load the scanServerName
        if (uiPreferences != null) {
            uiPreferences.removeEntryFromBookmark(bookmark, configPath);
        }
    }
View Full Code Here

        }
    }

    @Override
    public void removeAllEntryFromBookmark(String configPath) {
        UIPreferences uiPreferences = getUiPreferences();
        // Load the scanServerName
        if (uiPreferences != null) {
            uiPreferences.removeAllEntryFromBookmark(configPath);
        }

    }
View Full Code Here

        }

    }

    public void replaceEntryInBookmarks(String configPath, String newConfigPath) {
        UIPreferences uiPreferences = getUiPreferences();
        // Load the scanServerName
        if (uiPreferences != null) {
            uiPreferences.replaceEntryInBookmarks(configPath, newConfigPath);
        }
    }
View Full Code Here

            recordButton.setSelected(getDevicePreferences().getDataRecorder());
        }
    }

    private void setUIPreferences() {
        UIPreferences uiPreferences = UIPreferences.getInstance();
        if (uiPreferences != null) {
            // Set control panel
            String controlPanel = uiPreferences.getControlPanel();
            statusBar.setExecutedBatchFile(controlPanel);
        }
    }
View Full Code Here

TOP

Related Classes of fr.soleil.salsa.client.preferences.UIPreferences

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.