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