mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 00:29:34 +07:00
9 lines
156 B
Java
9 lines
156 B
Java
class Client {
|
|
protected Factory factory =
|
|
new Factory() {
|
|
public Product create () {
|
|
return new Product("created");
|
|
}
|
|
};
|
|
}
|