@JRubyClass(name="TCPServer", parent="TCPSocket")
public class RubyTCPServer extends RubyTCPSocket {
static void createTCPServer(Ruby runtime) {
RubyClass rb_cTCPServer = runtime.defineClass("TCPServer", runtime.fastGetClass("TCPSocket"), TCPSERVER_ALLOCATOR);
rb_cTCPServer.defineAnnotatedMethods(RubyTCPServer.class);
runtime.getObject().fastSetConstant("TCPserver",rb_cTCPServer);
}
private static ObjectAllocator TCPSERVER_ALLOCATOR = new ObjectAllocator() {