var data = modelData;
function model() {}
model.prototype = new baseCBSM('model', data);
model.prototype.haveParentArea = true;
model.prototype.haveChildArea = false;
model.prototype.init = function() { haveModelArea = true; }

model.prototype.getListCallbackFunc = mCallback;
model.prototype.runParentChangeCallbackFunc = mGetList;

function mCallback(data) { m.runCallback(data); }
function mGetList() { m.getList(); }

var m = new model();
m.init();
