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.

HorizontalLayout.java 581B

1234567891011121314151617181920212223242526272829
  1. package com.vaadin.ui;
  2. import com.vaadin.terminal.gwt.client.ui.VHorizontalLayout;
  3. /**
  4. * Horizontal layout
  5. *
  6. * <code>HorizontalLayout</code> is a component container, which shows the
  7. * subcomponents in the order of their addition (horizontally).
  8. *
  9. * @author IT Mill Ltd.
  10. * @version
  11. * @VERSION@
  12. * @since 5.3
  13. */
  14. @SuppressWarnings("serial")
  15. @ClientWidget(VHorizontalLayout.class)
  16. public class HorizontalLayout extends AbstractOrderedLayout {
  17. public HorizontalLayout() {
  18. }
  19. @Override
  20. public String getTag() {
  21. return "horizontallayout";
  22. }
  23. }