Search in sources :

Example 1 with EditProgressFAResult

use of net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult in project translationstudio8 by heartsome.

the class EditProgressFA method wordsSetInputData.

/**
	 * 向字数分析的字数展示模块填充数据
	 * @param curContainer
	 * @param wordsFAdata
	 */
public void wordsSetInputData(IContainer curContainer, StringBuffer wordsFAdata, int paddLeft) {
    paddLeft += 10;
    // 先判断该容器中是否有直接子文件为本次分析文件
    if (hasFAIFiles(curContainer)) {
        // 每个文件的具体数据
        for (int fIndex = 0; fIndex < model.getAnalysisIFileList().size(); fIndex++) {
            IFile curIFile = model.getAnalysisIFileList().get(fIndex);
            if (curIFile.getParent().equals(curContainer)) {
                EditProgressFAResult faResult = editProgFAResultMap.get(curIFile.getLocation().toOSString());
                wordsFAdata.append("\t\t<tr id='" + curContainer.getFullPath().toOSString() + "' name='words' " + "onmouseover= \"this.bgColor= '#F1F1FC'\" onmouseout= \"this.bgColor='#FFFFFF'\" bgcolor='#FFFFFF'>\n");
                wordsFAdata.append("\t\t\t<td class='fileTd' style='padding-left: " + paddLeft + "'>" + curIFile.getName() + // 文件名
                "</td>\n");
                wordsFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getNotApprovedWords() + // 未批准字数
                "</td>\n");
                wordsFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getNotApprovedWordsRatio() + // 未批准字数比例
                "</td>\n");
                wordsFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getApprovedWords() + // 已批准字数
                "</td>\n");
                wordsFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getApprovedWordsRatio() + // 已批准字数比例
                "</td>\n");
                wordsFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getLockedWords() + // 锁定字数
                "</td>\n");
                wordsFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getTotalWords() + // 总字数
                "</td>\n");
                wordsFAdata.append("\t\t</tr>\n");
            }
        }
    }
    // 遍历所有含有分析文件的容器,找出当前容器的子容器,
    for (int index = 0; index < allFolderList.size(); index++) {
        IContainer childContainer = allFolderList.get(index);
        if (childContainer.getParent().equals(curContainer)) {
            EditProgressFAResult faResult = editProgFAResultMap.get(childContainer.getLocation().toOSString());
            String folderId = childContainer.getFullPath().toOSString();
            wordsFAdata.append("<tr id='" + curContainer.getFullPath().toOSString() + "' name='words' " + "onmouseover= \"this.bgColor= '#F1F1FC'\" onmouseout= \"this.bgColor='#FFFFFF'\" bgcolor='#FFFFFF'>\n" + "<td class='folderTd' ><a href='javascript:void(0)' id='" + folderId + "' name='words' class='link' style='padding-left: " + paddLeft + "'" + "title='" + Messages.getString("qa.all.fa.clickToShrink") + "' onclick='clickFolder(id, name)'>" + "<span id='" + folderId + "_span'>-</span> " + childContainer.getName() + "</a></td>\n" + "<td class='folderTd' align='right'>" + faResult.getNotApprovedWords() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getNotApprovedWordsRatio() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getApprovedWords() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getApprovedWordsRatio() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getLockedWords() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getTotalWords() + "</td>\n" + "</tr>\n");
            wordsSetInputData(childContainer, wordsFAdata, paddLeft);
        }
    }
}
Also used : IFile(org.eclipse.core.resources.IFile) EditProgressFAResult(net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult) IContainer(org.eclipse.core.resources.IContainer)

Example 2 with EditProgressFAResult

use of net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult in project translationstudio8 by heartsome.

the class EditProgressFA method createFAResultHtml.

public String createFAResultHtml() {
    allFolderList = new LinkedList<IContainer>();
    Date createDate = new Date();
    SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    String createTime = formatter.format(createDate);
    formatter = new SimpleDateFormat("yyyyMMdd-HHmmss");
    String htmlNameTime = formatter.format(createDate);
    IProject curProject = model.getAnalysisIFileList().get(0).getProject();
    String htmlName = "EDLog" + htmlNameTime + ".html";
    String htmlPath = curProject.getLocation().append("Intermediate").append("Report").append(htmlName).toOSString();
    File htmlFile = new File(htmlPath);
    if (!htmlFile.getParentFile().exists()) {
        htmlFile.getParentFile().mkdirs();
    }
    FileOutputStream output;
    try {
        output = new FileOutputStream(htmlPath);
        output.write(QAConstant.FA_HtmlDoctype.getBytes("UTF-8"));
        output.write("<html>\n".getBytes("UTF-8"));
        String headerNode = QAConstant.FA_htmlHeader;
        headerNode = headerNode.replace("###Title###", Messages.getString("qa.fileAnalysis.EditProgressFA.tip2"));
        output.write(headerNode.getBytes("UTF-8"));
        output.write("\t<body>\n".getBytes("UTF-8"));
        output.write(("<p class=\"title\">" + Messages.getString("qa.fileAnalysis.EditProgressFA.name1") + "</p>").getBytes("UTF-8"));
        // ----------------<<<<<<start-- 下面是相关信息提示部份---------------------
        output.write("\t<div>\n".getBytes("UTF-8"));
        output.write("\t\t<table class=\"infoTableStyle\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\n".getBytes("UTF-8"));
        // 分析文件总数
        String title = Messages.getString("qa.fa.info.fileSum");
        String content = "" + model.getSubFileNum();
        String infoStr = QAConstant.FA_Report_Info.replace("###Title###", title).replace("###Content###", content);
        output.write(infoStr.getBytes("UTF-8"));
        // 分析失败文件
        title = Messages.getString("qa.fa.info.errorFiles");
        StringBuffer errorFileSB = new StringBuffer();
        errorFileSB.append("\t\t\t<div style=\"margin-bottom: 2px;\">");
        errorFileSB.append(model.getErrorIFileList().size());
        errorFileSB.append("</div>");
        for (IFile iFile : model.getErrorIFileList()) {
            errorFileSB.append("\t\t\t<div style=\"margin-bottom: 2px;\">");
            errorFileSB.append(iFile.getFullPath().toOSString());
            errorFileSB.append("</div>");
        }
        infoStr = QAConstant.FA_Report_Info.replace("###Title###", title).replace("###Content###", errorFileSB.toString());
        output.write(infoStr.getBytes("UTF-8"));
        // 报告生成时间
        title = Messages.getString("qa.fa.info.createTime");
        infoStr = QAConstant.FA_Report_Info.replace("###Title###", title).replace("###Content###", createTime);
        output.write(infoStr.getBytes("UTF-8"));
        output.write("</table></div><br>\n".getBytes("UTF-8"));
        // ---------------->>>>>>end-- 报表信息提示部分结束---------------------
        // --------------字数---------------------
        output.write(("\t\t<div class=\"legendStyle\"><b>" + Messages.getString("qa.fileAnalysis.EditProgressFA.words") + "</b></div>").getBytes("UTF-8"));
        StringBuffer wordsFAdata = new StringBuffer();
        getAllFolder(curProject, allFolderList);
        setDataToFolder(curProject);
        // 创建一个表
        wordsFAdata.append("\t<table class='tableStyle' cellpadding='0' cellspacing='1'> \n");
        // 表头
        wordsFAdata.append("\t\t<tr>\n");
        wordsFAdata.append("\t\t\t<td class='headerTd' rowSpan='2' width='22%'>" + Messages.getString("qa.all.fa.fileName") + "</td>\n");
        wordsFAdata.append("\t\t\t<td class='headerTd' colSpan='2' width='26%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.nonApprove") + "</td>\n");
        wordsFAdata.append("\t\t\t<td class='headerTd' colSpan='2' width='26%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approved") + "</td>\n");
        wordsFAdata.append("\t\t\t<td class='headerTd' rowSpan='2' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.lockWordsNum") + "</td>\n");
        wordsFAdata.append("\t\t\t<td class='headerTd' rowSpan='2' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.wordsSum") + "</td>\n");
        wordsFAdata.append("\t\t</tr>\n");
        wordsFAdata.append("\t\t<tr>\n");
        wordsFAdata.append("\t\t\t<td class='headerTd' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approveWords") + "</td>\n");
        wordsFAdata.append("\t\t\t<td class='headerTd' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approveProp") + "</td>\n");
        wordsFAdata.append("\t\t\t<td class='headerTd' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approveWords") + "</td>\n");
        wordsFAdata.append("\t\t\t<td class='headerTd' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approveProp") + "</td>\n");
        wordsFAdata.append("\t\t</tr>\n");
        // 首先写下项目
        EditProgressFAResult proFaResult = editProgFAResultMap.get(curProject.getLocation().toOSString());
        int paddLeft = 6;
        String folderId = curProject.getFullPath().toOSString();
        wordsFAdata.append("<tr onmouseover= \"this.bgColor= '#F1F1FC'\" onmouseout= \"this.bgColor='#FFFFFF'\" bgcolor='#FFFFFF'>\n" + "<td class='folderTd' style='padding-left: 6'>\n" + "<a href='javascript:void(0)' id='" + folderId + "' name='words' class='link'  " + "title='" + Messages.getString("qa.all.fa.clickToShrink") + "' onclick='clickFolder(id, name)' >" + "<span id='" + folderId + "_span'>-</span> " + curProject.getName() + "</a></td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getNotApprovedWords() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getNotApprovedWordsRatio() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getApprovedWords() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getApprovedWordsRatio() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getLockedWords() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getTotalWords() + "</td>\n" + "</tr>\n");
        wordsSetInputData(curProject, wordsFAdata, paddLeft);
        wordsFAdata.append("\t</table>\n");
        output.write(wordsFAdata.toString().getBytes("UTF-8"));
        output.write("<br/>\n".getBytes("UTF-8"));
        // --------------文本段---------------------
        output.write(("\t\t<div class=\"legendStyle\"><b>" + Messages.getString("qa.fileAnalysis.EditProgressFA.paragraph") + "</b></div>").getBytes("UTF-8"));
        StringBuffer paraFAdata = new StringBuffer();
        // 创建一个表
        paraFAdata.append("\t<table class='tableStyle' cellpadding='0' cellspacing='1'> \n");
        // 表头
        paraFAdata.append("\t\t<tr>\n");
        paraFAdata.append("\t\t\t<td class='headerTd' rowSpan='2' width='22%'>" + Messages.getString("qa.all.fa.fileName") + "</td>\n");
        paraFAdata.append("\t\t\t<td class='headerTd' colSpan='2' width='26%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.nonApprove") + "</td>\n");
        paraFAdata.append("\t\t\t<td class='headerTd' colSpan='2' width='26%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approved") + "</td>\n");
        paraFAdata.append("\t\t\t<td class='headerTd' rowSpan='2' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.lockParasNum") + "</td>\n");
        paraFAdata.append("\t\t\t<td class='headerTd' rowSpan='2' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.paraSum") + "</td>\n");
        paraFAdata.append("\t\t</tr>\n");
        paraFAdata.append("\t\t<tr>\n");
        paraFAdata.append("\t\t\t<td class='headerTd' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approveParaNum") + "</td>\n");
        paraFAdata.append("\t\t\t<td class='headerTd' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approveProp") + "</td>\n");
        paraFAdata.append("\t\t\t<td class='headerTd' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approveParaNum") + "</td>\n");
        paraFAdata.append("\t\t\t<td class='headerTd' width='13%'>" + Messages.getString("qa.fileAnalysis.EditProgressFA.approveProp") + "</td>\n");
        paraFAdata.append("\t\t</tr>\n");
        // 首先写下项目
        paddLeft = 6;
        paraFAdata.append("<tr onmouseover= \"this.bgColor= '#F1F1FC'\" onmouseout= \"this.bgColor='#FFFFFF'\" bgcolor='#FFFFFF'>\n" + "<td class='folderTd' style='padding-left: 6'>\n" + "<a href='javascript:void(0)' id='" + folderId + "' name='paras' class='link' title='" + Messages.getString("qa.all.fa.clickToShrink") + "' " + " onclick='clickFolder(id, name)'><span id='" + folderId + "_span'>-</span> " + curProject.getName() + "</a></td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getNotApprovedParas() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getNotApprovedParasRatio() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getApprovedParas() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getApprovedParasRatio() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getLockedParas() + "</td>\n" + "<td class='folderTd' align='right'>" + proFaResult.getTotalParas() + "</td>\n" + "</tr>");
        paraSetInputData(curProject, paraFAdata, paddLeft);
        paraFAdata.append("\t</table>\n");
        output.write(paraFAdata.toString().getBytes("UTF-8"));
        /*String htmlPathDiv = "<div style='width:100%;font-size:14;color:blue;'>"+Messages.getString("qa.all.fa.fileLocation")
				+ curProject.getFullPath().append("Report").append(htmlName).toOSString() + "</div>";
			output.write(htmlPathDiv.getBytes("UTF-8"));*/
        // -----------文本段结束--------------
        output.write("\t</body>\n".getBytes("UTF-8"));
        output.write("</html>".getBytes("UTF-8"));
        output.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
        logger.error(Messages.getString("qa.fileAnalysis.EditProgressFA.log3"), e);
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
        logger.error(Messages.getString("qa.fileAnalysis.EditProgressFA.log4"), e);
    } catch (IOException e) {
        e.printStackTrace();
        logger.error(Messages.getString("qa.fileAnalysis.EditProgressFA.log5"), e);
    }
    return htmlPath;
}
Also used : IFile(org.eclipse.core.resources.IFile) FileNotFoundException(java.io.FileNotFoundException) UnsupportedEncodingException(java.io.UnsupportedEncodingException) IOException(java.io.IOException) Date(java.util.Date) IProject(org.eclipse.core.resources.IProject) FileOutputStream(java.io.FileOutputStream) IContainer(org.eclipse.core.resources.IContainer) EditProgressFAResult(net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult) SimpleDateFormat(java.text.SimpleDateFormat) IFile(org.eclipse.core.resources.IFile) File(java.io.File)

Example 3 with EditProgressFAResult

use of net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult in project translationstudio8 by heartsome.

the class EditProgressFA method setDataToFolder.

/**
	 * 将文件下所有的子文件(直接或间接子文件)的值加到文件夹中
	 */
public void setDataToFolder(IProject curProject) {
    // 先存放项目相关的信息,所有的文件都存放在该项目中的,因此直接遍历所有的文件
    EditProgressFAResult proFaResult = new EditProgressFAResult();
    for (int i = 0; i < model.getAnalysisIFileList().size(); i++) {
        IFile ifile = model.getAnalysisIFileList().get(i);
        EditProgressFAResult faResult = editProgFAResultMap.get(ifile.getLocation().toOSString());
        proFaResult.setNotApprovedParas(faResult.getNotApprovedParas());
        proFaResult.setApprovedParas(faResult.getApprovedParas());
        proFaResult.setLockedParas(faResult.getLockedParas());
        proFaResult.setNotApprovedWords(faResult.getNotApprovedWords());
        proFaResult.setApprovedWords(faResult.getApprovedWords());
        proFaResult.setLockedWords(faResult.getLockedWords());
    }
    editProgFAResultMap.put(curProject.getLocation().toOSString(), proFaResult);
    // 先遍历所有的文件夹
    for (int index = 0; index < allFolderList.size(); index++) {
        IContainer container = allFolderList.get(index);
        EditProgressFAResult folderFaResult = new EditProgressFAResult();
        // 循环所有的已经分析完的文件
        for (int i = 0; i < model.getAnalysisIFileList().size(); i++) {
            IFile ifile = model.getAnalysisIFileList().get(i);
            IContainer iFileParent = ifile.getParent();
            while (iFileParent != null) {
                if (iFileParent.equals(container)) {
                    EditProgressFAResult faResult = editProgFAResultMap.get(ifile.getLocation().toOSString());
                    folderFaResult.setNotApprovedParas(faResult.getNotApprovedParas());
                    folderFaResult.setApprovedParas(faResult.getApprovedParas());
                    folderFaResult.setLockedParas(faResult.getLockedParas());
                    folderFaResult.setNotApprovedWords(faResult.getNotApprovedWords());
                    folderFaResult.setApprovedWords(faResult.getApprovedWords());
                    folderFaResult.setLockedWords(faResult.getLockedWords());
                    break;
                } else {
                    iFileParent = iFileParent.getParent();
                }
            }
        }
        editProgFAResultMap.put(container.getLocation().toOSString(), folderFaResult);
    }
}
Also used : IFile(org.eclipse.core.resources.IFile) EditProgressFAResult(net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult) IContainer(org.eclipse.core.resources.IContainer)

Example 4 with EditProgressFAResult

use of net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult in project translationstudio8 by heartsome.

the class EditProgressFA method beginAnalysis.

@Override
public int beginAnalysis(FAModel model, IProgressMonitor monitor, QAXmlHandler handler) {
    this.model = model;
    super.setModel(model);
    editProgFAResultMap = new HashMap<String, EditProgressFAResult>();
    if (monitor == null) {
        monitor = new NullProgressMonitor();
    }
    // 要分析的文件的所有
    int allTUSize = model.getAllTuSize();
    int traversalTuIndex = 0;
    int totalWork = allTUSize % workInterval == 0 ? (allTUSize / workInterval) : (allTUSize / workInterval) + 1;
    monitor.beginTask("", totalWork);
    for (int index = 0; index < model.getAnalysisIFileList().size(); index++) {
        IFile iFile = model.getAnalysisIFileList().get(index);
        monitor.setTaskName(MessageFormat.format(Messages.getString("qa.fileAnalysis.EditProgressFA.tip1"), iFile.getFullPath().toOSString()));
        String iFilePath = iFile.getLocation().toOSString();
        // 获取单个文件的翻译进度的数据
        Map<String, Integer> editProgMap = handler.getEditProgressData(iFilePath, monitor, workInterval, traversalTuIndex);
        // 如果获取的结果为null,则表示用户退出程序
        if (editProgMap == null) {
            return QAConstant.QA_ZERO;
        }
        traversalTuIndex += handler.getTuSizeMap().get(iFilePath);
        int notApprovedParas = editProgMap.get("notApprovedParas");
        int approvedParas = editProgMap.get("approvedParas");
        int lockedParas = editProgMap.get("lockedParas");
        int notApprovedWords = editProgMap.get("notApprovedWords");
        int approvedWords = editProgMap.get("approvedWords");
        int lockedWords = editProgMap.get("lockedWords");
        EditProgressFAResult editResult = new EditProgressFAResult(notApprovedParas, approvedParas, lockedParas, notApprovedWords, approvedWords, lockedWords);
        editProgFAResultMap.put(iFilePath, editResult);
    }
    if (!handler.monitorWork(monitor, traversalTuIndex, workInterval, true)) {
        return QAConstant.QA_ZERO;
    }
    // 开始填充数据
    printTransProgFAReslut();
    return QAConstant.QA_ZERO;
}
Also used : NullProgressMonitor(org.eclipse.core.runtime.NullProgressMonitor) IFile(org.eclipse.core.resources.IFile) EditProgressFAResult(net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult)

Example 5 with EditProgressFAResult

use of net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult in project translationstudio8 by heartsome.

the class EditProgressFA method paraSetInputData.

public void paraSetInputData(IContainer curContainer, StringBuffer paraFAdata, int paddLeft) {
    paddLeft += 10;
    // 先判断该容器中是否有直接子文件为本次分析文件
    if (hasFAIFiles(curContainer)) {
        // 每个文件的具体数据
        for (int fIndex = 0; fIndex < model.getAnalysisIFileList().size(); fIndex++) {
            IFile curIFile = model.getAnalysisIFileList().get(fIndex);
            if (curIFile.getParent().equals(curContainer)) {
                EditProgressFAResult faResult = editProgFAResultMap.get(curIFile.getLocation().toOSString());
                paraFAdata.append("\t\t<tr id='" + curContainer.getFullPath().toOSString() + "' name='paras' " + "onmouseover= \"this.bgColor= '#F1F1FC'\" onmouseout= \"this.bgColor='#FFFFFF'\" bgcolor='#FFFFFF'>\n");
                paraFAdata.append("\t\t\t<td class='fileTd' style='padding-left: " + paddLeft + "'>" + curIFile.getName() + // 文件名
                "</td>\n");
                paraFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getNotApprovedParas() + // 未批准文本段个数
                "</td>\n");
                paraFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getNotApprovedParasRatio() + // 未批准文本段比例
                "</td>\n");
                paraFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getApprovedParas() + // 已批准文本段个数
                "</td>\n");
                paraFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getApprovedParasRatio() + // 已批准文本段比例
                "</td>\n");
                paraFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getLockedParas() + // 锁定文本段
                "</td>\n");
                paraFAdata.append("\t\t\t<td class='fileTd' align='right'>" + faResult.getTotalParas() + // 总段数
                "</td>\n");
                paraFAdata.append("\t\t</tr>\n");
            }
        }
    }
    // 遍历所有含有分析文件的容器,找出当前容器的子容器,
    for (int index = 0; index < allFolderList.size(); index++) {
        IContainer childContainer = allFolderList.get(index);
        if (childContainer.getParent().equals(curContainer)) {
            EditProgressFAResult faResult = editProgFAResultMap.get(childContainer.getLocation().toOSString());
            String folderId = childContainer.getFullPath().toOSString();
            paraFAdata.append("<tr id='" + curContainer.getFullPath().toOSString() + "' name='paras' " + "onmouseover= \"this.bgColor= '#F1F1FC'\" onmouseout= \"this.bgColor='#FFFFFF'\" bgcolor='#FFFFFF'>\n" + "<td class='folderTd' ><a href='javascript:void(0)' id='" + folderId + "' name='paras' class='link' style='padding-left: " + paddLeft + "'" + "title='" + Messages.getString("qa.all.fa.clickToShrink") + "' onclick='clickFolder(id, name)'>" + "<span id='" + folderId + "_span'>-</span> " + childContainer.getName() + "</a></td>\n" + "<td class='folderTd' align='right'>" + faResult.getNotApprovedParas() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getNotApprovedParasRatio() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getApprovedParas() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getApprovedParasRatio() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getLockedParas() + "</td>\n" + "<td class='folderTd' align='right'>" + faResult.getTotalParas() + "</td>\n" + "</tr>\n");
            paraSetInputData(childContainer, paraFAdata, paddLeft);
        }
    }
}
Also used : IFile(org.eclipse.core.resources.IFile) EditProgressFAResult(net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult) IContainer(org.eclipse.core.resources.IContainer)

Aggregations

EditProgressFAResult (net.heartsome.cat.ts.ui.qa.model.EditProgressFAResult)5 IFile (org.eclipse.core.resources.IFile)5 IContainer (org.eclipse.core.resources.IContainer)4 File (java.io.File)1 FileNotFoundException (java.io.FileNotFoundException)1 FileOutputStream (java.io.FileOutputStream)1 IOException (java.io.IOException)1 UnsupportedEncodingException (java.io.UnsupportedEncodingException)1 SimpleDateFormat (java.text.SimpleDateFormat)1 Date (java.util.Date)1 IProject (org.eclipse.core.resources.IProject)1 NullProgressMonitor (org.eclipse.core.runtime.NullProgressMonitor)1