mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
25 lines
364 B
Java
Vendored
25 lines
364 B
Java
Vendored
public class J extends A {
|
|
|
|
public boolean okField = false;
|
|
|
|
public int getValProp() {
|
|
return 123;
|
|
}
|
|
|
|
public int getVarProp() {
|
|
return 456;
|
|
}
|
|
|
|
public void setVarProp(int x) {
|
|
okField = true;
|
|
}
|
|
|
|
public int isProp() {
|
|
return 789;
|
|
}
|
|
|
|
public void setProp(int x) {
|
|
okField = true;
|
|
}
|
|
}
|