mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
37 lines
1.3 KiB
Plaintext
Vendored
37 lines
1.3 KiB
Plaintext
Vendored
public final class test/DelegationMethodsWithArgsKt {
|
|
public final static @org.jetbrains.annotations.NotNull method box(): java.lang.String
|
|
}
|
|
|
|
|
|
public interface test/InputTextField {
|
|
public abstract method setText(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
|
}
|
|
|
|
|
|
public interface test/MooableTextField {
|
|
public abstract method moo(p0: int, p1: int, p2: int): int
|
|
}
|
|
|
|
|
|
public final class test/SimpleTextField {
|
|
private field text2: java.lang.String
|
|
public method <init>(): void
|
|
public @org.jetbrains.annotations.NotNull method getText(): java.lang.String
|
|
public method moo(p0: int, p1: int, p2: int): int
|
|
public method setText(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
|
}
|
|
|
|
|
|
public interface test/TextField {
|
|
public abstract @org.jetbrains.annotations.NotNull method getText(): java.lang.String
|
|
}
|
|
|
|
|
|
public final class test/TextFieldWrapper {
|
|
private synthetic final field $$delegate_0: test.MooableTextField
|
|
public method <init>(@org.jetbrains.annotations.NotNull p0: test.MooableTextField): void
|
|
public @org.jetbrains.annotations.NotNull method getText(): java.lang.String
|
|
public method moo(p0: int, p1: int, p2: int): int
|
|
public method setText(@org.jetbrains.annotations.NotNull p0: java.lang.String): void
|
|
}
|