summaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/ui/Accordion.java
blob: b937c7bc2b74b3816e1963753be95a6f1c0566fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
@VaadinApache2LicenseForJavaFiles@
 */
package com.vaadin.ui;

/**
 * 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
 */
public class Accordion extends TabSheet {

}