14 lines
240 B
Plaintext
14 lines
240 B
Plaintext
#name : get/set/member variable
|
|
# --
|
|
private ${1:String} ${2:name};
|
|
|
|
public void set${2:$(capitalize text)}(final $1 p${2:$(capitalize text)}) {
|
|
$2 = p${2:$(capitalize text)};
|
|
}
|
|
|
|
public $1 get${2:$(capitalize text)}() {
|
|
return $2;
|
|
}
|
|
$0
|
|
|