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.

VVerticalLayout.java 304B

1234567891011121314
  1. /*
  2. @ITMillApache2LicenseForJavaFiles@
  3. */
  4. package com.vaadin.terminal.gwt.client.ui;
  5. public class VVerticalLayout extends VOrderedLayout {
  6. public static final String CLASSNAME = "v-verticallayout";
  7. public VVerticalLayout() {
  8. super(CLASSNAME, ORIENTATION_VERTICAL);
  9. }
  10. }