20 lines
588 B
Java
Vendored
20 lines
588 B
Java
Vendored
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()
|
|
}
|