Rabbit 1.1

Global/rabbit.HopObject.js

Summary

Additional fields and methods of the HopObject class provided by the Rabbit framework.


//
// Copyright (c) 2006 Tobi Schäfer
// Alle Rechte vorbehalten. All rights reserved.
//
// $Revision$
// $LastChangedBy$
// $LastChangedDate$
// $HeadURL$
//

/**
 * @fileoverview Additional fields and methods of the 
 * HopObject class provided by the Rabbit framework.
 */

/** @ignore */
HopObject.prototype.onBeforeCreate = function(data) {
   return;
};

/** @ignore */
HopObject.prototype.onAfterCreate = function(data) {
   return;
};

/** @ignore */
HopObject.prototype.onSetProperty = function(property, value) {
   return value;
};

/** @ignore */
HopObject.prototype.onBeforeView = function(property, value) {
   return value;
};

/** @ignore */
HopObject.prototype.onAfterView = function(property, value) {
   return value;
};

/** @ignore */
HopObject.prototype.onBeforeEdit = function(property, value) {
   return value;
};

/** @ignore */
HopObject.prototype.onAfterEdit = function(property, value) {
   return value;
};

/** @ignore */
HopObject.prototype.onBeforeUpdate = function(property, value) {
   return value;
};

/** @ignore */
HopObject.prototype.onAfterUpdate = function(property, value) {
   return value;
};

Rabbit 1.1

Documentation generated by JSDoc on Thu Feb 15 20:58:41 2007