Package org.eclipse.team.internal.ccvs.ui.operations

Examples of org.eclipse.team.internal.ccvs.ui.operations.RemoteLogOperation


          throw new OperationCanceledException();
        }
        Map authors = new HashMap();
        ICVSRemoteResource[] remoteArray = ((ICVSRemoteResource[])
            remoteResources.toArray(new ICVSRemoteResource[remoteResources.size()]));
        rLogOperation = new RemoteLogOperation(view, remoteArray,null,null,lec);
        rLogOperation.execute(monitor);
        for (int cc = 0; cc < resources.length; cc++) {
          ChangeLog.this.getLogEntryForResource(resources[cc],
              authors);
          if (monitor.isCanceled()) {
View Full Code Here


                tag1 = new CVSTag(date1);
                tag2 = new CVSTag(date2);
            }
            ICVSRemoteResource[] remoteArray = remoteResources.toArray(new ICVSRemoteResource[remoteResources.size()]);
            if (tag1 != null && tag2 != null) {
                rLogOperation = new RemoteLogOperation(workbenchPart, remoteArray, tag1, tag2, logEntryCache);
            } else {
                rLogOperation = new RemoteLogOperation(workbenchPart, remoteArray, null, null, logEntryCache);
            }
            rLogOperation.execute(monitor);
            for (int i = 0; i < resources.length; i++) {
                this.getLogEntryForResource(resources[i]);
                if (monitor.isCanceled()) {
View Full Code Here

TOP

Related Classes of org.eclipse.team.internal.ccvs.ui.operations.RemoteLogOperation

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.