有没有办法在Eclipse(Helios)代码模板中大写变量值的第一个字母

时间:2011-01-12 03:02:59

标签: eclipse

我有一个带变量的代码模板,我想只在某些情况下将这个变量的值大写(只是第一个字母)。有没有办法做到这一点?

模板代码如下 - 我想在我的函数名中大写Property Name ...

private $$${PropertyName};
${cursor}    
public function get${PropertyName}() 
{
  return $$this->${PropertyName};
}

public function set${PropertyName}($$value) 
{
  $$this->${PropertyName} = $$value;
}

请注意:这是用于IDE中的代码模板的模板(不是在PHP中)。有关详细信息,请参阅:http://www.ibm.com/developerworks/opensource/tutorials/os-eclipse-code-templates/index.html

1 个答案:

答案 0 :(得分:15)

我也想要这个,并尝试构建一个自定义TemplateVariableResolver来做到这一点。 (我已经有一个自定义解析器可以生成新的UUID la http://dev.eclipse.org/blogs/jdtui/2007/12/04/text-templates-2/。)

我制作了一个绑定到capitalize的自定义解析器:

public class CapitalizingVariableResolver extends TemplateVariableResolver {
    @Override
    public void resolve(TemplateVariable variable, TemplateContext context) {
        @SuppressWarnings("unchecked")
        final List<String> params = variable.getVariableType().getParams();

        if (params.isEmpty())
            return;

        final String currentValue = context.getVariable(params.get(0));

        if (currentValue == null || currentValue.length() == 0)
            return;

        variable.setValue(currentValue.substring(0, 1).toUpperCase() + currentValue.substring(1));
    }
}

(plugin.xml中:)

<extension point="org.eclipse.ui.editors.templates">
  <resolver
        class="com.foo.CapitalizingVariableResolver"
        contextTypeId="java"
        description="Resolves to the value of the variable named by the first argument, but with its first letter capitalized."
        name="capitalized"
        type="capitalize">
  </resolver>
</extension>

我会这样使用:(我在Java工作;我看到你似乎没有)

public PropertyAccessor<${propertyType}> ${property:field}() {
    return ${property};
}

public ${propertyType} get${capitalizedProperty:capitalize(property)}() {
    return ${property}.get();
}

public void set${capitalizedProperty}(${propertyType} ${property}) {
    this.${property}.set(${property});
}

从Eclipse 3.5开始,我遇到的问题是,一旦我为property变量指定了值,我的自定义解析器就没有机会重新解析。似乎Java开发工具(Eclipse JDT)通过MultiVariableGuess中的JavaContext机制(参见addDependency())来执行此依赖模板变量的重新解析。对我们来说不幸的是,这种机制似乎没有暴露出来,所以我/我们不能用它来做同样的事情(没有大量的复制和粘贴或其他冗余工作)。

此时,我暂时放弃了一段时间,并将继续将前导小写和前导大写名称分别输入两个独立的模板变量。