The X Toolkit API

X.base

/**
* The superclass for all X.base-objects. All derived objects will be registered
* for event handling.
*
* @constructor
* @extends goog.events.EventTarget
*/
var b = new X.base();
/**
* The className of this class.
*
* @type {string}
* @protected
*/
b._classname = $_CLASSNAME;
/**
* The 'dirty' flag of this object.
*
* @type {boolean}
* @protected
*/
b._dirty = $_DIRTY;
/**
* The uniqueId of this instance. Each class instance in XTK has a uniqueId.
*
* @type {number}
* @protected
*/
b._id = $_ID;
/**
* Get the className of this object.
*
* @return {string} The className of this object.
* @public
*/
var _classname = b.classname;
/**
* Get the id of this instance.
*
* @return {string} The className of this object.
* @public
*/
var _id = b.id;


CONSTRUCTORS
X.base

PROPERTIES
_classname
_dirty
_id

GETTERS/SETTERS
classname
id

FUNCTIONS

STATIC



SOURCECODE