List of usage examples for com.vaadin.ui Component setVisible
public void setVisible(boolean visible);
From source file:uicomponents.TechChooser.java
License:Open Source License
public void showHelpers() { for (HorizontalLayout h : helpers) for (Component c : h) if (c instanceof PopupView) c.setVisible(true); }
From source file:uicomponents.TechChooser.java
License:Open Source License
public void hideHelpers() { for (HorizontalLayout h : helpers) for (Component c : h) if (c instanceof PopupView) c.setVisible(false); }