import java.util.*;
public class Widgets1 {
private Map<String, Widget1> value = new HashMap<>();
public Map<String, Widget1> getValue() {
return new HashMap<>(this.value);
}
public Widget1 getWidget1(String wid) {
return this.value.get(wid);
}
}