blob: d8482406c89eae9039bb13e53e4615d68f99073a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.vaadin.ui.Root;
/**
* Defines a specific theme for a {@link Root}.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface RootWidgetset {
/**
* @return name of the widgetset
*/
public String value();
}
|