Come posso mostrare un tipo di dati HashMap Java in UML Class Diagram (o nel dizionario C #)?
vale a dire. Questa classe:
public class Test
{
private Map<String, String> map;
private Map<String, int> map1;
public Test(){
this.map = new HashMap<String, String>();
this.map1 = new HashMap<String, int>();
}
public getMap(){
return this.map;
}
public addToMap(String key, String value){
this.map.put(key,value);
}
public getMap1(){
return this.map1;
}
public addToMap1(String key, int value){
this.map1.put(key,value);
}
}
Se possibile, fornire un esempio con il diagramma di classe UML.