org.codehaus.groovy.tools.gse.StringSetMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy Show documentation
Show all versions of groovy Show documentation
Groovy: A powerful, dynamic language for the JVM
package org.codehaus.groovy.tools.gse;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Set;
import java.util.TreeSet;
public class StringSetMap extends HashMap> {
public StringSetMap() {
super();
}
public StringSetMap(StringSetMap other) {
for (String key : other.keySet()) {
get(key).addAll(other.get(key));
}
}
public Set get(Object o){
String name = (String) o;
Set set = super.get(name);
if (set==null) {
set = new HashSet();
put(name,set);
}
return set;
}
public void makeTransitiveHull() {
TreeSet nameSet = new TreeSet(keySet());
StringSetMap ret = new StringSetMap(this);
for (String k: nameSet) {
StringSetMap delta = new StringSetMap();
for (String i: nameSet) {
for (String j: nameSet) {
Set iSet = get(i);
if (iSet.contains(k) && get(k).contains(j)) {
delta.get(i).add(j);
}
}
}
for (String i: nameSet) get(i).addAll(delta.get(i));
}
}
}