mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: 2f32664c77558fc4507a8a6ecc327f6c91b7d815
17 lines
284 B
Plaintext
17 lines
284 B
Plaintext
interface AccountModule {
|
|
static void createAccount(String a, String b) {
|
|
}
|
|
|
|
String getB();
|
|
}
|
|
class UseModule implements AccountModule {
|
|
|
|
public void createSome() {
|
|
AccountModule.createAccount("", getB());
|
|
}
|
|
|
|
@Override
|
|
public String getB() {
|
|
return "";
|
|
}
|
|
} |