@qooxdoo/framework
Version:
The JS Framework for Coders
70 lines (52 loc) • 1.52 kB
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2004-2008 1&1 Internet AG, Germany, http://www.1und1.de
License:
MIT: https://opensource.org/licenses/MIT
See the LICENSE file in the project's top-level directory for details.
Authors:
* Martin Wittemann (martinwittemann)
************************************************************************ */
/**
* Each object which wants to store data representative for the real item
* should implement this interface.
*/
qx.Interface.define("qx.ui.form.IModel",
{
/*
*****************************************************************************
EVENTS
*****************************************************************************
*/
events :
{
/** Fired when the model data changes */
"changeModel" : "qx.event.type.Data"
},
/*
*****************************************************************************
MEMBERS
*****************************************************************************
*/
members :
{
/**
* Set the representative data for the item.
*
* @param value {var} The data.
*/
setModel : function(value) {},
/**
* Returns the representative data for the item
*
* @return {var} The data.
*/
getModel : function() {},
/**
* Sets the representative data to null.
*/
resetModel : function() {}
}
});