Package com.intellij.openapi.vcs.changes

Examples of com.intellij.openapi.vcs.changes.ChangeList


    final VirtualFile[] files = IdeaUtilImpl.getProjectClasspath(_dataContext);
    worker.configureAuxClasspathEntries(files);

    // set source dirs
    //final VirtualFile[] files1 = IdeaUtilImpl.getSelectedFiles(_dataContext);
    final ChangeList changeList = getActiveChangeList();
    final Collection<VirtualFile> modifiedFiles = IdeaUtilImpl.getModifiedFilesByList(changeList, _dataContext);
    final VirtualFile[] selectedSourceFiles = modifiedFiles.toArray(new VirtualFile[modifiedFiles.size()]);
    worker.configureSourceDirectories(selectedSourceFiles);

    // set class files
    worker.configureOutputFiles(selectedSourceFiles);
    worker.work("Running FindBugs analysis for changelist '" + changeList.getName() + "'...");
  }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.vcs.changes.ChangeList

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.