FG42/conf/emacs.d/snippets/text-mode/cc-mode/objc-mode/prop

13 lines
182 B
Plaintext

#name : foo { ... } ; setFoo { ... }
# --
- (${1:id})${2:foo}
{
return $2;
}
- (void)set${2:$(capitalize text)}:($1)aValue
{
[$2 autorelease];
$2 = [aValue retain];
}
$0