File: /home/alex/dev/work/webapps/branches/scopes/doc/src/bindings/src/action-metadata.js
/**
*
* Metadata passed to scopes for preview and activation
*
* @module ScopeJS
*
* @class ActionMetadata
*/
function ActionMetadata(){}
ActionMetadata.prototype = {
/**
* Check if this ActionMetadata has a hint
* @method contains_hint
* @param hint {String}
* @return Boolean
*/
contains_hint: function(hint) {
},
/**
* Set the value of an attribute
* @method set
* @param key {String}
* @param value {String}, {Number} or {Object}
*/
set: function(key, value) {
},
/**
* Get the value of an attribute
* @method get
* @param key {String}
* @return {String}, {Number} or {Object}
*/
get: function(key) {
}
};