Class XataJax
Defined in: xatajax.core.js.
| Constructor Attributes | Constructor Name and Description |
|---|---|
|
XataJax()
A class that includes utility methods that are needed for
loading scripts and manipulating the environment.
|
| Field Attributes | Field Name and Description |
|---|---|
| <static> |
XataJax.beans
|
| <static> |
XataJax.db
|
| <static> |
XataJax.errorcodes
Keeps track of error codes.
|
| <static> |
XataJax.nextErrorCode
Pointer to next error code.
|
| <static> |
XataJax.ui
|
| <static> |
XataJax.undo
|
| Method Attributes | Method Name and Description |
|---|---|
| <static> |
XataJax.load(The)
Loads a namespace, object, or class using its fully-qualified
name.
|
Class Detail
XataJax()
A class that includes utility methods that are needed for
loading scripts and manipulating the environment.
Field Detail
<static>
XataJax.beans
Defined in: xatajax.beans.core.js.
<static>
XataJax.db
Defined in: xatajax.db.core.js.
<static>
XataJax.errorcodes
Keeps track of error codes.
<static>
XataJax.nextErrorCode
Pointer to next error code.
<static>
XataJax.ui
Defined in: xatajax.ui.core.js.
<static>
XataJax.undo
Defined in: xatajax.undo.js.
Method Detail
<static>
{Object}
XataJax.load(The)
Loads a namespace, object, or class using its fully-qualified
name. If the namespace hasn't been created yet, this will create it. If it
has already been created, it just returns the existing namespace.
// require <xataface/IO.js>
// Load the IO class so we can use it
var IO = XataJax.load('xataface.IO');
- Parameters:
- {String} The
- name of a namespace.
- Returns:
- {Object} The namespace.