/*jslint plusplus: true, white: true, indent: 2, maxlen: 90 */
/*global $wk$ */
/**
* @author Wolfgang Kowarschick
* @copyright 2012-2013, Wolfgang Kowarschick
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted under the terms of the
* Creative Commons License Attribution-NonCommercial-ShareAlike 3.0 Unported
* (CC BY-NC-SA 3.0: http://creativecommons.org/licenses/by-nc-sa/3.0/).
*/
////////////////////////////////////////////////////////////////////////////////
// Class "$wk$.vclsd.data.WKcData"
////////////////////////////////////////////////////////////////////////////////
$wk$("$wk$.WKcClass", "$wk$.observer.WKcSignaler",
function($)
{ "use strict";
/**
* <code>WKcData</code> objects can be used to store application data
* and to inform observers about data changes.
*
* @class
* @name $wk$.vclsd.data.WKcData
* @returns {Object} A new data object.
*/
var WKcData =
new $.WKcClass
({fullName: "$wk$.vclsd.data.WKcData",
mixin: $.WKcSignaler,
});
$.moduleAdd({ name: "$wk$.vclsd.data.WKcData",
module: { WKcData: WKcData }
});
});
////////////////////////////////////////////////////////////////////////////////
// End of Class "$wk$.ldvcs.data.WKcData"
////////////////////////////////////////////////////////////////////////////////