"Robert Klemme" <bob.news@gmx.net> wrote in news:431ddrF1l3qk5U1
@individual.net:
>> I have a problem:
>>
[quoted text clipped - 25 lines]
>
> robert
Note that if you want the same name (why?), you can only declare
message_temp (why the underscore?, naming conventions in Java suggest
messageTem or even better tempMessage) as a superclass of one or both.
If RimsAcyclic is a superclass of Message, use
RimsAcyclic message_temp;
If Message is a superclass of RimsAcyclic, use
Message message_temp;
If neither is a superclass of the other, use a common superclass.
Remember that all classes are implicit subclasses of Object.

Signature
Beware the False Authority Syndrome