| Did you know ... | Search Documentation: |
| class->get_method |
->get_method, class->send_method
and class->instance_variable
are used to expand or redefine the behaviour of a class. They are
normally used right after the class has been created. The following
restrictions apply:
send access there
should not be a send_method and if a variable has get
access there should not be a get_method with the same name. If both
exist, the method is used instead of the variable.
Note that both the Prolog and Lisp language interfaces provide an interface for defining methods. See their resp. manual.
The methods object->slot, object->send_super,‘object
object<-get_super’and
friends are designed to support the definition of method
implementations. See also class code.
<-slot ->get_method