- Application Programming Interface (API) references and general documentation such as quick start and detailed guides
- cross references between the API references and the guides
- accessible online and off line
- easy markup language
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FILTER_PATTERNS =*.js=doxygen.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// @file Sync.js | |
/// @namespace Sync | |
/// Module for loading and storing data | |
var Sync = { | |
/// @function Sync.load | |
/// Loads an resource | |
/// @param {String} id the GUID of the resource | |
/// @param {Function} success callback to be executed with the data on suceess | |
/// @param {Function} error callback to be executed with error description in case of failure | |
/// Loads an resource | |
load : function (id, success, error) { | |
}, | |
/// @function Sync.store | |
/// Store an resource | |
/// @param {String} id the GUID of the resource | |
/// @param {Object} data the resource | |
/// @param {Function} success callback to be executed when the store operation has completed successfully | |
/// @param {Function} error callback to be executed with error description in case of failure | |
/// Store an resource | |
store : function (id, data, success, error) { | |
}, | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// @file Sync.js | |
/// @namespace Sync | |
/// Module for loading and storing data | |
namespace Sync { | |
/// Loads an resource | |
/// @param id the GUID of the resource | |
/// @param success callback to be executed with the data on suceess | |
/// @param error callback to be executed with error description in case of failure | |
/// Loads an resource | |
undefined load(String id, Function success, Function error); | |
} | |
namespace Sync { | |
/// Store an resource | |
/// @param id the GUID of the resource | |
/// @param data the resource | |
/// @param success callback to be executed when the store operation has completed successfully | |
/// @param error callback to be executed with error description in case of failure | |
/// Store an resource | |
undefined store(String id, Object data, Function success, Function error); | |
} |
No comments:
Post a Comment