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.

VHorizontalLayout.java 270B

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