I have this attribute in Java:
private final Object MUTEX = new Object();
How can I show the init of a new Object in the UML Class Diagram?
EDIT:
The attribute MUTEX is used only for synchronized (MUTEX)
operation.
So I was wondering if the initialization of this variables is needed to be specified in a UML class diagram, but i'm not sure if this initialization is behavior like or structural specific.