mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
13 lines
173 B
Java
13 lines
173 B
Java
package b;
|
|
import a.A;
|
|
class B extends A {
|
|
int foo;
|
|
|
|
public int getFoo() {
|
|
return foo;
|
|
}
|
|
|
|
public void setFoo(int foo) {
|
|
this.foo = foo;
|
|
}
|
|
} |