Question

I have been working on this for quite few time 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. Can someone help me in the above problem? My interface and class has following relationship

interface foo

{

    void a();
    void b();

}

class goo : foo

{

    public override void a()
    {

        //Code goes here
    }
}

Can you please tell me what to use in visual paradigm to show there relationship?

Was it helpful?

Solution

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

enter image description here

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top