Dmitry
You wrote in message news:
[hidden email]...
> I suppose method #nameOf: of ReferenceView class should be overriden for
> correct name resolution:
>
> nameOf: aView
> aView == self referee ifTrue: [ ^ self name ].
> ^ super nameOf: aView
Well the #nameOf: message is intended to answer the name of a sub-view.
Since the "referee" of a ReferenceView is not logically a sub-view (although
it is physically), we're not convinced that it is not correct for
ReferenceView to just inherit the View implementation, which always answers
nil.
Is there any specific issue which the implementation above corrects for you?
Regards
Blair