mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 07:14:21 +07:00
12 lines
200 B
Java
12 lines
200 B
Java
package my.ext;
|
|
import my.api.MyService;
|
|
|
|
public class MyServiceExt {
|
|
public static MyService provider() {
|
|
return new MyService() {
|
|
@Override
|
|
public void foo() {
|
|
}
|
|
};
|
|
}
|
|
} |