package com.smtscript.lib; import java.io.IOException; import com.smtscript.lib.socket.JSServerSocket; public class JSStaticSocket extends JSStaticAbstract { public JSServerSocket createServerSocket(int listenPort) throws IOException { return new JSServerSocket(this, listenPort); } }