Package com.intellij.openapi.diff

Examples of com.intellij.openapi.diff.SimpleDiffRequest$FileDiffRequest


                    if (object != null) {
                        String title =
                                object.getSchema().getName() + "." +
                                        object.getName() + " " +
                                        object.getTypeName() + " - " + windowTitle;
                        SimpleDiffRequest diffRequest = new SimpleDiffRequest(project, title);
                        diffRequest.setContents(originalContent, changedContent);
                        diffRequest.setContentTitles(referenceTitle + " ", "Your version ");

                        DiffManager.getInstance().getIdeaDiffTool().show(diffRequest);
                    }
                }
            }.start();
View Full Code Here


        }.queue();
    }

    private DiffRequest createDiffRequest(Project project, Revision r1, SVNProperties p1,
                                          Revision r2, SVNProperties p2) {
        SimpleDiffRequest request = new SimpleDiffRequest(project, "Subversion properties difference");
        request.setContentTitles(r1.toString(), r2.toString());
        request.setContents(new SimpleContent(propertiesToString(p1)),
                new SimpleContent(propertiesToString(p2)));
        return request;
    }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.diff.SimpleDiffRequest$FileDiffRequest

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.