blob: 5854d18c3f9d2d801cbfd05d7a1ad57b13d488fa [file] [log] [blame]
class Client {
protected Factory factory =
new Factory() {
public Product create () {
return new Product("created");
}
};
}