mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-24 04:07:09 +07:00
11 lines
220 B
Java
11 lines
220 B
Java
public class A implements I {
|
|
private final Base myDelegate = new Base();
|
|
|
|
public Base getMyDelegate() {
|
|
return myDelegate;
|
|
}
|
|
|
|
public void methodFromI() {
|
|
myDelegate.methodFromI();
|
|
}
|
|
} |