[LC] add test on Throws annotation

This commit is contained in:
Dmitrii Gridin
2023-01-06 19:06:03 +01:00
committed by Space Team
parent 5a74fec3ac
commit 0e23ffcec9
10 changed files with 137 additions and 0 deletions
@@ -0,0 +1,19 @@
public final class Test /* Test*/ extends Base {
@org.jetbrains.annotations.NotNull()
private final java.lang.String boo;
@org.jetbrains.annotations.NotNull()
private final java.lang.String foo;
private final int p1;
@org.jetbrains.annotations.NotNull()
public final java.lang.String getBoo() throws MyException;// getBoo()
@org.jetbrains.annotations.NotNull()
public final java.lang.String getFoo() throws MyException;// getFoo()
public Test(int) throws MyException;// .ctor(int)
public final void readSomething() throws MyException;// readSomething()
}