我想开发一个导入类的 Eclipse Java 模板,该类的名称派生自当前类。${enclosing_type}
给我光标所在的类,让我们假设 Qualified Name com.example.CurrentClass
。${imp:import(com.example.impl.CurrentClassImpl)}
创建所需第二类的导入。
但是如果我将这两部分结合起来,我会收到错误消息:
模板具有不完整的变量。键入“$$”以输入美元字符。
模板代码
${imp:import(com.example.impl.${enclosing_type}Impl)}
如果我用单引号将内部部分括起来,则不会出现错误消息,但${enclosing_type}
不会得到解决。Double Dollar$${enclosing_type}
仍会显示错误消息。