Package org.intellij.plugins.junitgen.diff

Examples of org.intellij.plugins.junitgen.diff.DiffFileAction


                        FileEditorManager.getInstance(genCtx.getProject()).openFile(fileToOpen, true, true);
                    }
                });
            } else if (JOptionPane.YES_OPTION == overwriteInd) {
                //user wants to merge, so create the files and we get them together
                new DiffFileAction().showDiff(writer.toString(), fileToOpen, this.genCtx);
            } else {
                log.warn("Couldn't create the virtual file for some reason");
            }
        } catch (Exception e) {
            log.error("Exception while attempting to create the JUnit file", e);
View Full Code Here

TOP

Related Classes of org.intellij.plugins.junitgen.diff.DiffFileAction

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.