record.js revision 468f077f3ad52463360d087a5ea7c7d495bbc530
}
/**
* Class name.
*
* @property NAME
* @type String
* @static
* @final
* @value "record"
*/
/////////////////////////////////////////////////////////////////////////////
//
// Record Attributes
//
/////////////////////////////////////////////////////////////////////////////
id: {
valueFn: "_setId",
writeOnce: true
},
data : {
}
};
/* Record extends Base */
_setId: function() {
return Y.guid();
},
initializer: function(data) {
},
destructor: function() {
},
return this.get("data");
}
else {
}
return null;
}
});