Eclipse :Java Editor Template Variables

Java Editor Template Variables

Template variables may be used in the template pattern. Variables are resolved to their concrete value when the template is evaluated in its context. Variables may be specified using simple or full syntax:

  • Simple variables take the following form:

    ${array}

    This defines a variable with name array that will resolve to an array. It can be referenced multiple times as is.

  • Full variables take the following form:

    ${it:var(java.util.Iterator)}

    This defines a variable with name it that will resolve to a local variable of type java.util.Iterator. It can be referenced multiple times by simply giving its name without the type: ${it}
    Arguments to a full variable can be written verbatim if they are qualified names or integers. If an argument includes other characters or spaces, then it has to be enclosed in single quotes ''.

If there are several possible matches for a variable, they may be presented as proposals to the user.

General Template Variables

Both Java and Javadoc context define the following variables:

VariableDescription
${cursor}Specifies the cursor position when the template edit mode is left. This is useful when the cursor should jump to another place than to the end of the template on leaving template edit mode.
${date}Evaluates to the current date.
${dollar}Evaluates to the dollar symbol $. Alternatively, two dollars can be used: $$.
${enclosing_method}Evaluates to the name of the enclosing method.
${enclosing_method_arguments}Evaluates to a comma separated list of argument names of the enclosing method. This variable can be useful when generating log statements for many methods.
${enclosing_package}Evaluates to the name of the enclosing package.
${enclosing_project}Evaluates to the name of the enclosing project.
${enclosing_type}Evaluates to the name of the enclosing type.
${file}Evaluates to the name of the file.
${line_selection}Evaluates to content of all currently selected lines.
${primary_type_name}Evaluates to the name primary type of the current compilation unit.
${return_type}Evaluates to the return type of the enclosing method.
${time}Evaluates to the current time.
${user}Evaluates to the user name.
${word_selection}Evaluates to the content of the current text selection.
${year}Evaluates to the current year.

Java Specific Template Variables

The Java context additionally defines the following variables. Note: In the table below, id is a user-chosen name of a new variable.

VariableDescription
${id:field(type[,type]*)}Evaluates to a field in the current scope that is a subtype of any of the given types. If no type is specified, any non-primitive field matches.

Example:
${count:field(int)}

${id:var(type[,type]*)}Evaluates to a field, local variable or parameter visible in the current scope that is a subtype of any of the given types. If no type is specified, any non-primitive variable matches.

Example:
${container:var(java.util.List, 'java.lang.Object[]')}

${id:localVar(type[,type]*)}Evaluates to a local variable or parameter visible in the current scope that is a subtype of any of the given type. If no type is specified, any non-primitive local variable matches.

${array} is a shortcut for ${array:localVar('java.lang.Object[]')}, but also matches arrays of primitive types.
${collection} is a shortcut for ${collection:localVar(java.util.Collection)}.
${iterable} is a shortcut for ${iterable:localVar(java.lang.Iterable)}, but also matches arrays.

${id:argType(variable, n)}Evaluates to the nth type argument of the referenced template variable. The reference should be the name of another template variable. Resolves to java.lang.Objectif the referenced variable cannot be found or is not a parameterized type.

Example:
${type:argType(vector, 0)} ${first:name(type)} = ${vector:var(java.util.Vector)}.get(0)

${id:elemType(variable)}Evaluates to the element type of the referenced template variable. The reference should be the name of another template variable that resolves to an array or an instance of java.lang.Iterable. The elemType variable type is similar to ${id:argType(reference,0)}, the difference being that it also resolves the element type of an array.

${array_type} is a shortcut for ${array_type:elemType(array)}.
${iterable_type} is a shortcut for ${iterable_type:elemType(iterable)}.

${id:newName(reference)}Evaluates to an non-conflicting name for a new local variable of the type specified by the reference. The reference may either be a Java type name or the name of another template variable. The generated name respects the code style settings.

${index} is a shortcut for ${index:newName(int)}.
${iterator} is a shortcut for ${iterator:newName(java.util.Iterator)}.
${array_element} is a shortcut for ${array_element:newName(array)}.
${iterable_element} is a shortcut for ${iterable_element:newName(iterable)}.

${id:newType(qualifiedTypeName)}Evaluates to a type name given the fully qualified Java type name. Evaluates to a simple type name and an import if no conflicting type exists. Evaluates to a fully qualified type name otherwise.

Example:
${type:newType(java.util.Iterator)}

${:import(type[,type]*)}Adds an import statement for each type. Does nothing if the import already exists. Does nothing if a conflicting import exists. Evaluates to nothing.

Example:
${:import(java.util.List, java.util.Collection)}

${:importStatic([qualifiedName[,qualifiedName]*])}Adds a static import statement for each qualified name that is not already imported. The qualifiedName is the fully qualified name of a static field or method or it is the qualified name of a type plus a .* suffix, enclosed in single quotes ''. Does nothing if a conflicting import exists. Evaluates to nothing.

Example:
${is:importStatic(java.util.Collections.EMPTY_SET, 'java.lang.System.*')}

${id:link(proposal[,proposal]*)}Evaluates to id if the list of proposals is empty, evaluates to the first proposal otherwise. The evaluated value is put into linked mode. A proposal window shows all the given proposals.

Example:
java.util.Collections.${kind:link(EMPTY_SET, EMPTY_LIST, EMPTY_MAP)}

${array}Evaluates to a proposal for an array visible in the current scope.
${array_element}Evaluates to a name for a new local variable for an element of the ${array} variable match.
${array_type}Evaluates to the element type of the ${array} variable match.
${collection}Evaluates to a proposal for a collection visible in the current scope.
${exception_variable_name}Exception variable name in catch blocks.
${index}Evaluates to a proposal for an undeclared array index.
${iterator}Evaluates to an unused name for a new local variable of type java.util.Iterator.
${iterable}Evaluates to a proposal for an iterable or array visible in the current scope.
${iterable_element}Evaluates to a name for a new local variable for an element of the ${iterable} variable match.
${iterable_type}Evaluates to the element type of the ${iterable} variable match.
${todo}Evaluates to a proposal for the currently specified default task tag.
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值