mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 00:29:34 +07:00
12 lines
221 B
Java
12 lines
221 B
Java
public class A extends B {
|
|
private final MyJ myDelegate = new MyJ();
|
|
|
|
public J getMyDelegate() {
|
|
return myDelegate;
|
|
}
|
|
|
|
private class MyJ implements J {
|
|
public void run() {
|
|
}
|
|
}
|
|
} |