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

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

import javax.annotation.meta.TypeQualifier;
import javax.annotation.meta.When;

@Documented
@TypeQualifier(applicableTo=CharSequence.class)
@Retention(RetentionPolicy.RUNTIME)
public @interface SlashedClassName {
	When when() default When.ALWAYS;
}