Uses of Interface
com.vaadin.ui.Layout

Packages that use Layout
com.vaadin.ui   
 

Uses of Layout in com.vaadin.ui
 

Classes in com.vaadin.ui that implement Layout
 class AbsoluteLayout
          AbsoluteLayout is a layout implementation that mimics html absolute positioning.
 class AbstractLayout
          An abstract class that defines default implementation for the Layout interface.
 class AbstractOrderedLayout
           
 class AbstractSplitPanel
          AbstractSplitPanel.
 class CssLayout
          CssLayout is a layout component that can be used in browser environment only.
 class CustomLayout
           A container component with freely designed layout and style.
 class ExpandLayout
          Deprecated. Deprecated in favor of the new OrderedLayout
 class FormLayout
          FormLayout is used by Form to layout fields.
 class GridLayout
          A layout where the components are laid out on a grid using cell coordinates.
 class HorizontalLayout
          Horizontal layout HorizontalLayout is a component container, which shows the subcomponents in the order of their addition (horizontally).
 class HorizontalSplitPanel
          A horizontal split panel contains two components and lays them horizontally.
 class OrderedLayout
          Deprecated. Replaced by VerticalLayout/HorizontalLayout. For type checking please not that VerticalLayout/HorizontalLayout do not extend OrderedLayout but AbstractOrderedLayout (which also OrderedLayout extends).
 class SplitPanel
          Deprecated. in 6.5. Use HorizontalSplitPanel or VerticalSplitPanel instead.
 class VerticalLayout
          Vertical layout VerticalLayout is a component container, which shows the subcomponents in the order of their addition (vertically).
 class VerticalSplitPanel
          A vertical split panel contains two components and lays them vertically.
 

Methods in com.vaadin.ui that return Layout
 Layout Form.getFooter()
          Returns a layout that is rendered below normal form contents.
 Layout Form.getLayout()
          Gets the layout of the form.
 Layout Panel.getLayout()
          Deprecated. A Panel can now contain a ComponentContainer which is not necessarily a Layout. Use Panel.getContent() instead.
 

Methods in com.vaadin.ui with parameters of type Layout
 void Form.setFooter(Layout newFormFooter)
          Sets the layout that is rendered below normal form contens.
 void Form.setLayout(Layout newLayout)
          Sets the layout of the form.
 void Panel.setLayout(Layout newLayout)
          Deprecated. A Panel can now contain a ComponentContainer which is not necessarily a Layout. Use Panel.setContent(ComponentContainer) instead.
 

Constructors in com.vaadin.ui with parameters of type Layout
Form(Layout formLayout)
          Constructs a new form with given Layout.
Form(Layout formLayout, FormFieldFactory fieldFactory)
          Constructs a new form with given Layout and FormFieldFactory.
 



Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.