aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs165/pr273628/MonitorableMethod.java
blob: 6678563242623a0ff4f8294f7f6b4d4816badfa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package p;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface MonitorableMethod
{
    ApiDescriptor value();
}