// 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 (cityZipAction == null) var cityZipAction = {}; cityZipAction._path = '/dwr'; cityZipAction.getAllParentCity = function(callback) { dwr.engine._execute(cityZipAction._path, 'cityZipAction', 'getAllParentCity', callback); } cityZipAction.getAllChildCity = function(p0, callback) { dwr.engine._execute(cityZipAction._path, 'cityZipAction', 'getAllChildCity', p0, callback); } cityZipAction.execute = function(p0, p1, callback) { dwr.engine._execute(cityZipAction._path, 'cityZipAction', 'execute', p0, p1, false, false, callback); } cityZipAction.execute = function(p0, p1, p2, p3, callback) { dwr.engine._execute(cityZipAction._path, 'cityZipAction', 'execute', p0, p1, p2, p3, callback); } cityZipAction.getServlet = function(callback) { dwr.engine._execute(cityZipAction._path, 'cityZipAction', 'getServlet', callback); } cityZipAction.setServlet = function(p0, callback) { dwr.engine._execute(cityZipAction._path, 'cityZipAction', 'setServlet', p0, callback); }