1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
amix-vimrc-mirror/sources_non_forked/snipmate-snippets/java/gs.snippet

10 lines
166 B
Plaintext
Raw Normal View History

//getter for $3
public ${2:variable_type} get${1:VariableName}() {
return ${3:variableName};
}
//setter for $3
public void set$1($2 $3) {
this.$3 = $3;
}${4}