Package net.sf.cvschangelog.model

Examples of net.sf.cvschangelog.model.ChangeLogRepositoryMap


            if (inputElement instanceof IProject) {
                IProject project = (IProject) inputElement;
                ICVSRemoteResource remoteProject;
                remoteProject = CVSWorkspaceRoot.getRemoteResourceFor(project);
                ICVSRepositoryLocation location = remoteProject.getRepository();
                ChangeLogRepositoryMap repository = changeLogMap
                        .getRepository(location);
                Collection entries = repository.getChangeLogEntries();
                return(entries.toArray());
            }
        } catch (CVSException e) {
            e.printStackTrace();
        }
View Full Code Here

TOP

Related Classes of net.sf.cvschangelog.model.ChangeLogRepositoryMap

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.