mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 01:50:56 +07:00
14 lines
238 B
Java
14 lines
238 B
Java
public class Outer {
|
|
public static interface Inner {
|
|
/**
|
|
* Method.
|
|
* @param s String parameter.
|
|
*/
|
|
void foo(String s);
|
|
}
|
|
|
|
public static class Impl implements Inner {
|
|
public void foo(String s) {
|
|
}
|
|
}
|
|
} |