Examples of ILogEntry


Examples of org.eclipse.team.internal.ccvs.core.ILogEntry

        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

Examples of org.eclipse.team.internal.ccvs.core.ILogEntry

    }

    public void compactLogEntries() {
        ChangeLogEntry changeLogEntry;
        for (int i = 0; i < cvsLogEntries.size(); i++) {
            ILogEntry cvsEntry = cvsLogEntries.get(i);
            ChangeLogEntryKey key = new ChangeLogEntryKey(
                    cvsRepositoryLocation, cvsEntry.getAuthor(), cvsEntry
                            .getDate());
            if (changeLogEntries.containsKey(key)) {
                changeLogEntry = (ChangeLogEntry) changeLogEntries.get(key);
                changeLogEntry.addRemoteFile(cvsEntry.getRemoteFile(), cvsEntry
                        .getRevision());
            } else {
                changeLogEntry = new ChangeLogEntry(cvsRepositoryLocation,
                        cvsEntry.getAuthor(), cvsEntry.getRevision(), cvsEntry
                                .getRemoteFile(), cvsEntry.getComment(),
                        cvsEntry.getDate());
                changeLogEntries.put(key,changeLogEntry);
            }
        }
        cvsLogEntries.clear();
    }
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.