| 2 |
## $Id$ |
## $Id$ |
| 3 |
## ---------------------------------------------------------------------- |
## ---------------------------------------------------------------------- |
| 4 |
## $Log$ |
## $Log$ |
| 5 |
|
## Revision 1.8 2004/06/07 16:45:56 joko |
| 6 |
|
## now propagates args to "rapcall method" |
| 7 |
|
## |
| 8 |
## Revision 1.7 2003/05/13 07:52:14 joko |
## Revision 1.7 2003/05/13 07:52:14 joko |
| 9 |
## enhanced: *hierarchical* containers for context handling |
## enhanced: *hierarchical* containers for context handling |
| 10 |
## making methods from foreign context(s) available |
## making methods from foreign context(s) available |
| 309 |
# V1 - no arguments were being propagated |
# V1 - no arguments were being propagated |
| 310 |
#$self->{$refkey}->$method(); |
#$self->{$refkey}->$method(); |
| 311 |
# V2 - trying this.... |
# V2 - trying this.... |
| 312 |
$self->{$refkey}->$method(); |
$self->{$refkey}->$method($args->{args}); |
| 313 |
|
|
| 314 |
} elsif (my $ref = $self->getInstance()) { |
} elsif (my $ref = $self->getInstance()) { |
| 315 |
$ref->$method(); |
$ref->$method($args->{args}); |
| 316 |
} |
} |
| 317 |
|
|
| 318 |
return; |
return; |