List of usage examples for com.vaadin.ui AbstractSingleComponentContainer subclass-usage
From source file com.ejt.vaadin.loginform.LoginForm.java
/**
* Login form with auto-completion and auto-fill for all major browsers.
* Derive from this class and implement the abstract
* {@link #createContent(com.vaadin.ui.TextField, com.vaadin.ui.PasswordField, com.vaadin.ui.Button)} method
* to build the layout using the text fields and login button that are passed to that method.
* The supplied components are specially treated so that they work with password managers.
From source file info.magnolia.ui.vaadin.form.Form.java
/** * Server side implementation of the form view. Displays the form inside a {@link MagnoliaTabSheet}. */ public class Form extends AbstractSingleComponentContainer implements FormViewReduced { private List<Field<?>> fields = new LinkedList<Field<?>>();
From source file info.magnolia.ui.vaadin.overlay.Overlay.java
/**
* A Single component container that includes a "glass" or "curtain" which dims out and prevents interaction on the elements
* below it. It is different than a Vaadin Window in that ONLY the component that it is attached to receives the modal glass.
* It is only modal within the component that it is added to.
* Positioning of the glass and component depends on one of the parents having css position set to relative or absolute.
*/
From source file info.magnolia.ui.vaadin.tabsheet.MagnoliaTab.java
/** * A tab in the shell tabsheet. */ public class MagnoliaTab extends AbstractSingleComponentContainer implements SelectiveRenderer { public MagnoliaTab(final String caption, final Component c) {
From source file org.dussan.vaadin.dcharts.DCharts.java
public class DCharts extends AbstractSingleComponentContainer { private static final long serialVersionUID = -7224003274781707144L; private static final int ID = 0; private static final int DECIMAL_SEPARATOR = 1; private static final int THOUSANDS_SEPARATOR = 2;