Eclipse - xtend模板

时间:2014-05-13 10:44:34

标签: eclipse templates xtend

我尝试从这里创建一个xtend模板: 偏好>&的Xtend GT;模板

${imp:import(foo.Bar)}

@Test
def ${name}() throws Exception {
    ${cursor} 
}

即使这是作为Java模板工作,xtend类将为此生成以下代码:

class Test {
    //Here I pressed Ctrl+Spac
    imp

    @Test
    def name() throws Exception {

    }
}

看起来我使用的语法在xtend模板中无效。但它也没有抱怨任何错误。 有没人试过Xtend模板?请帮帮我!

1 个答案:

答案 0 :(得分:1)

'导入'模板变量解析器目前在Xtend中不可用。您可以提交功能请求。