1 // ==========================================================================
  2 // Project:   SproutCore - JavaScript Application Framework
  3 // Copyright: ©2006-2011 Strobe Inc. and contributors.
  4 //            Portions ©2008-2011 Apple Inc. All rights reserved.
  5 // License:   Licensed under MIT license (see license.js)
  6 // ==========================================================================
  7 
  8 
  9 /* evil:true */
 10 
 11 sc_require('coders/object');
 12 
 13 /** @class
 14 
 15   A DesignCoder encodes specifically the design for a set of views.
 16   
 17   @extends SC.ObjectCoder
 18 */
 19 SC.DesignCoder = SC.ObjectCoder.extend({
 20   extendMethodName: 'design',
 21   encodeMethodName: 'encodeDesign'  
 22 });