コード例 #1
0
ファイル: MapOfLists.java プロジェクト: repoxIST/repoxLight
 public void putAll(MapOfLists<K, O> map) {
   for (K entry : map.keySet()) {
     putAll(entry, map.get(entry));
   }
 }