24 lines
832 B
Java
Vendored
24 lines
832 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;
|
|
|
|
@kotlin.jvm.Throws(exceptionClasses = {MyException.class})
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getBoo() throws MyException;// getBoo()
|
|
|
|
@kotlin.jvm.Throws(exceptionClasses = {MyException.class})
|
|
@org.jetbrains.annotations.NotNull()
|
|
public final java.lang.String getFoo() throws MyException;// getFoo()
|
|
|
|
@kotlin.jvm.Throws(exceptionClasses = {MyException.class})
|
|
public Test(int) throws MyException;// .ctor(int)
|
|
|
|
@kotlin.jvm.Throws(exceptionClasses = {MyException.class})
|
|
public final void readSomething() throws MyException;// readSomething()
|
|
}
|