Package org.tigris.subversion.subclipse.ui.dialogs

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

Related Classes of org.tigris.subversion.subclipse.ui.dialogs.HistoryDialog

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.