How show visibility scope for methods on uml class diagram?
How can I show visibility scope of methods in uml designer? For example, I have class TestClass with 3 methods: publicMethod, protectedMethod, privateMethod:
public class TestClass {
private int field1;
public void publicMethod() {
}
protected void protectedMethod() {
}
private void privateMethod() {
}
}
UML class diagram in UML Designer is shown on attached picture. You can see visibility scope icons (public, protected, private) are absent. But they are visible on this video: http://www.jetbrains.com/idea/training/demos/uml-class-diagrams.html - and this articles about UML Designer: http://www.jetbrains.com/idea/features/uml_class_diagram.html, http://jetbrains.dzone.com/news/class-diagram-intellij-idea-8
Help me please in this issue. Thanks in advance!
OS: Ubuntu 13.04
IntelliJ IDEA: 12.1.4
Attachment(s):
IntelliJ_IDEA_TestClass_UML.png
请先登录再写评论。