/* * Stub code generated with gModeler.com * * Human Diagram * This is some info about this diagram * Author: Grant Skinner * Version: 1.0 * Classes: Human, Coder, */ /** * @class Human * @tooltip No description available. * @author Grant Skinner * @version 1.0 * @codehint _hc * @see Coder * @param Integer height The height parameter. */ Human = function(height) { /** * @property eyeColor * @tooltip My eyes are blue. * @type color */ this.eyeColor = null; /** * @property height * @type int */ this.height = height; } /** * @method stop * @tooltip The wonderful stop method. * @param Boolean ok Is it OK? * @param Object testParam testParam parameter, to see if it works * @return bool */ Human.prototype.stop = function(ok, testParam) { } /** * @method walk * @return void */ Human.prototype.walk = function() { } /** * @event onStop */ /** * @event onWalk */ /** * @class Coder * @tooltip No description available. * @author Grant Skinner * @version 1.0 * @see Human */ Coder = function() { /** * @property madSkillz * @type bool */ this.madSkillz = null; } Coder.prototype = new Human(); /** * @method code * @return void */ Coder.prototype.code = function() { }