summaryrefslogtreecommitdiffstats
path: root/sampleUses/src/main/java/edu/umd/cs/findbugs/DottedClassName.java
blob: f8779d07df0b694f0de8a23c2e550b3c897c18d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package edu.umd.cs.findbugs;

import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

import javax.annotation.meta.TypeQualifierNickname;
import javax.annotation.meta.When;

@Documented
@SlashedClassName(when=When.NEVER)
@TypeQualifierNickname
@Retention(RetentionPolicy.RUNTIME)
public @interface DottedClassName { }