Package com.intellij.openapi.diff

Examples of com.intellij.openapi.diff.SimpleContent$LineSeparators


        final SourceCodeFile virtualFile = getSourcecodeFile(e);
        final Project project = ActionUtil.getProject(e);
        if (project!= null && virtualFile != null) {
            new SimpleLaterInvocator() {
                public void execute() {
                    SimpleContent originalContent = new SimpleContent(referenceText, virtualFile.getFileType());
                    DBSourceFileContent changedContent = new DBSourceFileContent(project, virtualFile);

                    DBSchemaObject object = virtualFile.getObject();
                    if (object != null) {
                        String title =
View Full Code Here


    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.SimpleContent$LineSeparators

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.