blob: 597dd7c0b1ce910c005de6052df123ba2261fd59 [file] [log] [blame]
class Client {
protected Factory getFactory () {
return
new Factory() {
public Product create () {
return new Product("created");
}
};
}
}