Package org.eclipse.team.internal.ccvs.core.syncinfo

Examples of org.eclipse.team.internal.ccvs.core.syncinfo.ResourceSyncInfo


    }
    ICVSRemoteResource remote = CVSWorkspaceRoot.getRemoteResourceFor(cvsResource);
    if (remote == null) {
      return;
    }
    ResourceSyncInfo syncInfo = remote.getSyncInfo();
    syncInfo.getTag();
   
    ILogEntry entries[] = lec.getLogEntries(remote);
    if (entries != null) {
        for (int cc = 0; cc < entries.length; cc++) {         
          if(syncInfo == null || isSameBranch(syncInfo.getRevision(),
              entries[cc].getRevision())) 
              {         
            Map comments = (Map) authors.get(entries[cc].getAuthor());
            if (comments == null) {
              comments = new HashMap();
View Full Code Here


        ICVSRemoteResource remote = CVSWorkspaceRoot
                .getRemoteResourceFor(cvsResource);
        if (remote == null) {
            return;
        }
        ResourceSyncInfo syncInfo = remote.getSyncInfo();
        syncInfo.getTag();
        ILogEntry entries[] = logEntryCache.getLogEntries(remote);
        if (entries != null) {
            newChangeLogEntries.addAll(Arrays.asList(entries));
        }
    }
View Full Code Here

TOP

Related Classes of org.eclipse.team.internal.ccvs.core.syncinfo.ResourceSyncInfo

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.