loadBookmarks();
}
private void buildBookmarks() {
try {
UIPreferences uiPreferences = UIPreferencesPersistence.loadSystemPreferences();
// Load the scanServerName
if (uiPreferences != null) {
Map<String, Map<String, String>> bookmarks = uiPreferences.getBookmarks();
Set<String> bookmarkKeySet = bookmarks.keySet();
Object[] keyArray = bookmarkKeySet.toArray();
Arrays.sort(keyArray);
removeAllItems();
for (Object bookmarkKey : keyArray) {