Files
openide/java/java-tests/testData/codeInsight/completion/normal/Annotation4_after.java
2009-10-15 13:07:59 +01:00

16 lines
253 B
Java

enum Setup {
NO_CONNECTION,
CONNECTION
}
@Target(value = ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Test {
Setup setup();
}
public class Client {
@Test(setup = Setup.CONNECTION<caret>)
public void run() {
}
}