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 262B

1234567891011
  1. package com.vaadin.terminal.gwt.client.ui;
  2. public class VVerticalLayout extends VOrderedLayout {
  3. public static final String CLASSNAME = "i-verticallayout";
  4. public VVerticalLayout() {
  5. super(CLASSNAME, ORIENTATION_VERTICAL);
  6. }
  7. }