Package org.eclipse.jgit.revplot

Examples of org.eclipse.jgit.revplot.PlotWalk.parseBody()


        commentViewer.setInput(c);
        final PlotWalk walk = new PlotWalk(input.getRepository());
        try {
          final RevCommit unfilteredCommit = walk.parseCommit(c);
          for (RevCommit parent : unfilteredCommit.getParents())
            walk.parseBody(parent);
          fileViewer.setInput(unfilteredCommit);
        } catch (IOException e) {
          fileViewer.setInput(c);
        } finally {
          walk.dispose();
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.