You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

VerticalLayout.java 636B

123456789101112131415161718192021222324252627282930
  1. package com.vaadin.ui;
  2. import com.vaadin.terminal.gwt.client.ui.VVerticalLayout;
  3. /**
  4. * Vertical layout
  5. *
  6. * <code>VerticalLayout</code> is a component container, which shows the
  7. * subcomponents in the order of their addition (vertically). A vertical layout
  8. * is by default 100% wide.
  9. *
  10. * @author IT Mill Ltd.
  11. * @version
  12. * @VERSION@
  13. * @since 5.3
  14. */
  15. @SuppressWarnings("serial")
  16. @ClientWidget(VVerticalLayout.class)
  17. public class VerticalLayout extends AbstractOrderedLayout {
  18. public VerticalLayout() {
  19. setWidth("100%");
  20. }
  21. @Override
  22. public String getTag() {
  23. return "verticallayout";
  24. }
  25. }