Class Diagram - `implements` between two interface renders as `extends`

0 votes
asked Sep 22 in Bug by Ryszard
Newbie here.

@startuml

' interfaces #################################################
interface       IQObject
interface       IRemoteServiceMenuUiMgr implements IQObject /' - BUG - shows as extends !!! '/
{
  {method} +void activate() = 0

}

I use work-around but it should be fixed IMO.

Thanks! Great tool - so far ;-)

1 Answer

0 votes
answered Sep 22 by The-Lu (60,440 points)

Hi R., and all,

It seems normal because 'interface' can not implement 'interface'... (even if there are debate today...) wink
See for example:

If that can help,
Regards,
Th.

...