1234567891011121314151617181920212223242526272829 |
- function DataDispatcherEntry(oCV) {
-
-
- if (oCV) {
- this.setRequest(new AsynchDATARequest(oCV.getGateway(), oCV.getWebContentRoot()));
- }
-
- DataDispatcherEntry.baseConstructor.call(this, oCV);
- }
- DataDispatcherEntry.prototype = new DispatcherEntry();
- DataDispatcherEntry.baseConstructor = DispatcherEntry;
|