dotfiles/.vim/template/java/snip-getter.java

8 lines
181 B
Java
Raw Normal View History

2012-02-13 19:19:04 +00:00
/**
* get {{_input_:name}}
* @return {{_input_:name}}
*/
public {{_input_:type}} get{{_expr_:substitute('{{_input_:name}}', '\w\+', '\u\0', '')}}() {
return {{_input_:name}};
}