1234567891011 |
- /*
- * Ext JS Library 2.0 Copyright(c) 2006-2007, Ext JS, LLC. licensing@extjs.com
- *
- * http://extjs.com/license
- */
- Ext.data.DataReader = function(A, B) {
- this.meta = A;
- this.recordType = B instanceof Array ? Ext.data.Record.create(B) : B
- };
- Ext.data.DataReader.prototype = {};
|