Improve predicate editor decoding.

This commit is contained in:
fredkiefer 2020-01-11 19:33:24 +01:00
parent 97cb13a5ff
commit 5f147345fc
5 changed files with 64 additions and 1 deletions

View file

@ -230,4 +230,24 @@
{
}
- (void) setAction: (SEL)action
{
_action = action;
}
- (SEL) action
{
return _action;
}
- (void) setTarget: (id)target
{
_target = target;
}
- (id) target
{
return _target;
}
@end