0

我在 MySemanticHighlightingCalculator 中实现了以下代码,并且一个元素的颜色按预期更改。但是默认的默认突出显示,例如关键字的紫色不再起作用。

INode root = resource.getParseResult().getRootNode();
        BidiTreeIterator<INode> iterator = root.getAsTreeIterable().iterator();
        while (iterator.hasNext()) {
            INode node = iterator.next();
            if (node.getSemanticElement() instanceof ParameterDesc) {
                ParameterDesc paramdesc = (ParameterDesc) node
                        .getSemanticElement();
                if (paramdesc.isUnselected() == true) {
                    acceptor.addPosition(
                            node.getOffset(),
                            node.getLength(),
                            MySemanticHighlightingConfiguration.PARAMETER_DESCRIPTION);
                }
            }
        }

public static final String PARAMETER_DESCRIPTION = "Parameter_Description";

public void configure(IHighlightingConfigurationAcceptor acceptor) {
    addType(acceptor, PARAMETER_DESCRIPTION, 255, 0, 0, TextAttribute.STRIKETHROUGH);
}

public void addType(IHighlightingConfigurationAcceptor acceptor, String s,
        int r, int g, int b, int style) {
    TextStyle textStyle = new TextStyle();
    textStyle.setColor(new RGB(r, g, b));
    textStyle.setStyle(style);
    acceptor.acceptDefaultHighlighting(s, s, textStyle);
}

但是,当我从 MyDSLLUiModule 中删除 MySemanticHighlightingConfiguration 时,默认突出显示再次起作用:

public Class<? extends IHighlightingConfiguration> bindIHighlightingConfiguration() {
        return MySemanticHighlightingConfiguration.class;
    }

我知道默认突出显示不会在偏移量和偏移量+长度之间应用,但我希望它用于文档的其余部分。

4

1 回答 1

1

您的突出显示配置必须扩展DefaultHighlightingConfiguration并且您必须调用super.configure(). 那会成功的。

请注意,resource.getParseResult()在极少数情况下可能为空。

于 2013-02-04T19:11:49.710 回答