blob: e8b9d493db05a8f4220bc5d0df71a1c839d4e604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package net.sourceforge.jnlp.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* This annotation should be declared for each test which requires DISPALY defined.
* If no display is defined, then those test will not be run
*
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface NeedsDisplay {
}
|