Examples of HistoryDialog


Examples of org.openstreetmap.josm.gui.dialogs.HistoryDialog

        addToggleDialog(propertiesDialog = new PropertiesDialog());
        addToggleDialog(selectionListDialog = new SelectionListDialog());
        addToggleDialog(relationListDialog = new RelationListDialog());
        addToggleDialog(new CommandStackDialog());
        addToggleDialog(new UserListDialog());
        addToggleDialog(new HistoryDialog(), true);
        addToggleDialog(conflictDialog = new ConflictDialog());
        addToggleDialog(validatorDialog = new ValidatorDialog());
        addToggleDialog(filterDialog = new FilterDialog());
        addToggleDialog(new ChangesetDialog(), true);
        addToggleDialog(new MapPaintDialog());
View Full Code Here

Examples of org.tigris.subversion.subclipse.ui.dialogs.HistoryDialog

    }
   
    String path = svnUrl.substring(location.getUrl().toString().length());
    ISVNRemoteFolder remoteFolder = location.getRemoteFolder(path);
   
    HistoryDialog dialog = new HistoryDialog(shell, remoteFolder);
    // dialog.getShell().setSize(300, 200);

    if(dialog.open() != Window.CANCEL) {
      ILogEntry[] selectedEntries = dialog.getSelectedLogEntries();
      if(selectedEntries.length > 0) {
        return Long.toString(selectedEntries[0].getRevision().getNumber());
      }
    }
   
View Full Code Here
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.