Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a interface like:

public interface MyEntity {

    //HIbernate version
    public long getOptLock();

    //these method are used to keep track of Last modified timestamp 
    public void update();

    public void persist();

}

Which is implemented by most of the classes in my object model. Now, i know how to show a interface realisation in a Class diagram.

The problem is since this particular interface is implemented by most of the classes it is making the class diagram cluttered. Is there a altenative way to show interface realisation?

share|improve this question

1 Answer

up vote 0 down vote accepted

The alternative way is to use the lollipop notation, right above every class that implements the interface:

See this image from msdn website.

For the full article see this link.

share|improve this answer
Okay thanks. I was under impression that lollipop notation was only for marker interface. This helps a lot. – Rohit Feb 8 at 9:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.