// Provide a default path to dwr.engine if (dwr == null) var dwr = {}; if (dwr.engine == null) dwr.engine = {}; if (DWREngine == null) var DWREngine = dwr.engine; if (netQuestion == null) var netQuestion = {}; netQuestion._path = '/dwr'; netQuestion.execute = function(p0, p1, callback) { dwr.engine._execute(netQuestion._path, 'netQuestion', 'execute', p0, p1, false, false, callback); } netQuestion.submitQuestion = function(p0, p1, callback) { dwr.engine._execute(netQuestion._path, 'netQuestion', 'submitQuestion', p0, p1, false, callback); } netQuestion.loadQuestion = function(callback) { dwr.engine._execute(netQuestion._path, 'netQuestion', 'loadQuestion', false, callback); } netQuestion.execute = function(p0, p1, p2, p3, callback) { dwr.engine._execute(netQuestion._path, 'netQuestion', 'execute', p0, p1, p2, p3, callback); } netQuestion.getServlet = function(callback) { dwr.engine._execute(netQuestion._path, 'netQuestion', 'getServlet', callback); } netQuestion.setServlet = function(p0, callback) { dwr.engine._execute(netQuestion._path, 'netQuestion', 'setServlet', p0, callback); }