2

I have been working on this but could not find a way to denote the relationship between a class and an interface that is implemented by class in an UML diagram.

My interface and class has following relationship:

interface foo

{

    void a();
    void b();

}

class goo : foo

{

    public override void a()
    {

        //Code goes here
    }
}

What can I use in visual paradigm to show their relationship?

halfer
  • 19,824
  • 17
  • 99
  • 186
Love Gupta
  • 975
  • 2
  • 16
  • 31

1 Answers1

5

It is shown like inheritance. This article may help you UML basics

enter image description here

Adil
  • 146,340
  • 25
  • 209
  • 204