DataReader-min.js 282 B

1234567891011
  1. /*
  2. * Ext JS Library 2.0 Copyright(c) 2006-2007, Ext JS, LLC. licensing@extjs.com
  3. *
  4. * http://extjs.com/license
  5. */
  6. Ext.data.DataReader = function(A, B) {
  7. this.meta = A;
  8. this.recordType = B instanceof Array ? Ext.data.Record.create(B) : B
  9. };
  10. Ext.data.DataReader.prototype = {};