从Eclipse插件写入stdout

时间:2012-11-12 10:57:12

标签: eclipse eclipse-plugin

我的目标是扩展eclipse QuickFix组件并自动化解决语法错误的过程。基本上,QuickFix组件提供了一个解决方案列表,我的任务是选择最佳解决方案并将其应用于错误代码。但是,现在我被要求在控制台中打印标记的分辨率。我试过制作一个教程,现在我有点卡住了。我试过训练的教程是:http://www.informit.com/articles/article.aspx?p=370625&seqNum=21 我首先在plugin.xml文件中添加了扩展名

<extension point="org.eclipse.ui.ide.markerResolution">
    <markerResolutionGenerator
        markerType="org.eclipse.core.resources.problemmarker"
        class="org.eclipse.escript.quickfix.QuickFixer"/>
</extension>

然后我创建了两个类QuickFixer和QuickFix。

package quickfixer;

import org.eclipse.core.resources.IMarker;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.ui.IMarkerResolution;
import org.eclipse.ui.IMarkerResolutionGenerator;

class QuickFixer implements IMarkerResolutionGenerator {

    public IMarkerResolution[] getResolutions(IMarker arg0) {
    try {
            Object problem = arg0.getAttribute("Whatsup");
            return new IMarkerResolution[] {
            new QuickFix("Fix #1 for "+problem),
            new QuickFix("Fix #2 for "+problem),
            };
        } catch(CoreException e) {
            return new IMarkerResolution[0];
        }
    }
}

然后是QuickFix类:

package quickfixer;

import org.eclipse.core.resources.IMarker;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.ui.IMarkerResolution;

public class QuickFix implements IMarkerResolution {

       String label;
       QuickFix(String label) {
          this.label = label;
       }
       public String getLabel() {
          return label;
       }

    public void run(IMarker arg0) {
        MessageDialog.openInformation(null, "QuickFix Demo",
                     "This quick-fix is not yet implemented");
        System.out.println("Label: " + label);              
    }
}

我设法纠正了我遇到的所有错误,然后我运行了插件。 我无法在控制台中打印出标签。任何建议??? ...

1 个答案:

答案 0 :(得分:2)

使用System.out并不是一个好主意。检查relevant FAQ原因

  

你应该避免使用标准输出或标准错误   插件

并使用正确的日志记录(或调试器)。