So I have seen this question: In Java, difference between default, public, protected, and private and decided to use no modifier in my domain model (MVC), but I cannot understand how do I put them in the domain model diagram?
According to Wikipedia:
"+"       Public 
"-"       Private 
"#"       Protected 
"/"       Derived (can be combined with one of the others)
"_"       Static
But I do not see what shall I use for a field I do not put a modifier?
 
     
    