private static final Form<DefaultCacheContainer> myForm = makeForm(valueCombo);
private static final WindowView myView = new WindowView(myForm);
public DefaultCacheContainerWindow(ApplicationMetaData propertyMetadata, DispatchAsync dispatcher) {
super("Set Default Cache Container", myForm, null,
new SingleEntityToDmrBridgeImpl(propertyMetadata, DefaultCacheContainer.class, myView, dispatcher));
myView.setBridge(bridge);
this.bridge.loadEntities(null);
setWidth("330");
setHeight("180");
}