public void dispose() { // Dispose of the views logger.debug("Disposing of views"); for (View view : getViews()) { view.dispose(); } }
public boolean containsView(String id) { for (View view : getViews()) { if (id.equals(view.getId())) { return true; } } return false; }
public void bringViewToFront(String id) { for (View view : getViews()) { if (view.getId() != null && view.getId().equals(id)) { Util.bringToFront(view); // Carry on until all views with the specified // view id are in front } } }
public void addView(View view, String label) { view.createUI(); dynamicConfigPanel.setCurrentComponent(view, label); dynamicConfigPanel.activate(); }