blob: 8e78cf4b663175302e69c7346cf48722eda5b4f7 [file] [log] [blame]
class Factory {
public static Server createServer() {
return new Server() {
public void foo() {
System.out.println("foo() called");
}
};
}
}