blob: 5cf805615cf1ba5b6fda7e4f661e193bfb9c1781 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.ui;
import com.vaadin.terminal.gwt.client.ui.VAccordion;
/**
* An accordion is a component similar to a {@link TabSheet}, but with a
* vertical orientation and the selected component presented between tabs.
*
* Closable tabs are not supported by the accordion.
*
* The {@link Accordion} can be styled with the .v-accordion, .v-accordion-item,
* .v-accordion-item-first and .v-accordion-item-caption styles.
*
* @see TabSheet
*/
@SuppressWarnings("serial")
@ClientWidget(VAccordion.class)
public class Accordion extends TabSheet {
}
|