mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: d550a9ad10d014116378fd4800cff7b72b7b51c1
11 lines
338 B
Java
11 lines
338 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({ElementType.METHOD, ElementType.TYPE, ElementType.CONSTRUCTOR})
|
|
@Retention(RetentionPolicy.CLASS)
|
|
public @interface NonBlocking {}
|