Package com.taobao.eclipse.plugin.reviewboard.subclipse.diffoperation

Examples of com.taobao.eclipse.plugin.reviewboard.subclipse.diffoperation.GeneratePostMultiDiffOperation


                    } catch (ReviewboardException e) {
                        MessageDialog.openError(getShell(), RbSubclipseMessages.getString("ERROR_INFORMATION_LABLE"), e.getMessage()); //$NON-NLS-1$
                        return false;
                    }
                   
                    GeneratePostMultiDiffOperation generatePostCommitDiffOperation = new GeneratePostMultiDiffOperation(
                            mainPageSelectedResources, startAndStop[0], startAndStop[1]);
                    getContainer().run(true, true, generatePostCommitDiffOperation);
                    fileDiffs = generatePostCommitDiffOperation.getFileDiffs();
                    Map<String, StringBuilder> diffContentSBByCharset = generatePostCommitDiffOperation.getDiffContentSBByCharset();
                    if( null != diffContentSBByCharset && !diffContentSBByCharset.isEmpty() && diffContentSBByCharset.size() > 1){
                        boolean isConfirm = MessageDialog.openConfirm(getShell(),
                                RbSubclipseMessages.getString("WARNING_LABLE"),
                                RbSubclipseMessages.getString("PROMPTING_ENCODING_0"));
                        if(!isConfirm){
View Full Code Here

TOP

Related Classes of com.taobao.eclipse.plugin.reviewboard.subclipse.diffoperation.GeneratePostMultiDiffOperation

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.