Package net.sf.cvschangelog.model

Examples of net.sf.cvschangelog.model.ChangeLogMap


   * The constructor.
   */
  public CVSChangeLogPlugin() {
    super();
    plugin = this;
    changeLogMap = new ChangeLogMap();
    try {
      resourceBundle = ResourceBundle.getBundle("net.sf.cvschangelog.CVSChangeLogPluginResources");
    } catch (MissingResourceException x) {
      resourceBundle = null;
    }
View Full Code Here


    protected IStatus run(IProgressMonitor monitor) {
        try {
            ICVSRemoteResource remoteProject = CVSWorkspaceRoot
                    .getRemoteResourceFor(project);
            ICVSRepositoryLocation repository = remoteProject.getRepository();
            ChangeLogMap changeLogMap = CVSChangeLogPlugin.getDefault().getChangeLogMap();
            changeLogRepositoryMap = changeLogMap.getRepository(repository);
            IResource[] resources = getAllSelectedResources();
            List<ICVSRemoteResource> remoteResources = getRemoteResources(resources);
            if (monitor.isCanceled()) {
                throw new OperationCanceledException();
            }
View Full Code Here

TOP

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

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.