mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
14 lines
245 B
Java
14 lines
245 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
class Test {
|
|
@NotNull
|
|
String text;
|
|
|
|
public Test(@Nullable String a)
|
|
{
|
|
if (a == null)
|
|
this.text = "test";
|
|
else
|
|
this.text = a;
|
|
}
|
|
} |