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