mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
11 lines
309 B
Java
11 lines
309 B
Java
package org.jetbrains.annotations;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Target(value = ElementType.METHOD)
|
|
@Retention(value = RetentionPolicy.CLASS)
|
|
public @interface NonBlocking {}
|