mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
11 lines
203 B
Java
11 lines
203 B
Java
class Client {
|
|
protected Factory getFactory () {
|
|
return
|
|
new Factory() {
|
|
public Product create () {
|
|
return new Product("created");
|
|
}
|
|
};
|
|
}
|
|
}
|