| |
| Recipe 4.9: Accessing an Attribute or Method in a Specific Parent Class |
Last Updated: Sep 8, 2003
Status: Draft
|
|
|
|
How important is this problem to you?
(Login to Vote)
5.00 Rating, 1 Vote
|
|
How acceptable is the proposed solution?
(Login to Vote)
0.00 Rating, 0 Votes
|
|
Problem:
   
You want to access an attribute or method as it is implemented in a specific parent class of an object.
Solution:
Use the class name before the attribute or method name:
method foo {
.MySuperClass.foo( ... );
}
Discussion:
|
|