mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 23:39:07 +07:00
8 lines
148 B
Java
8 lines
148 B
Java
@FunctionalInterface
|
|
public interface MyRunnable {
|
|
int getResult();
|
|
|
|
default int getDoubleResult() {
|
|
return getResult() * 2;
|
|
}
|
|
} |