API Docs for: 0.1
Show:

File: /home/alex/dev/work/webapps/branches/scopes/doc/src/bindings/src/activation-query.js

/**
 * 
 * Represents an activation request that is executed inside a scope
 * 
 * @module ScopeJS
 * @class ActivationQuery
 */
function ActivationQuery(){}

ActivationQuery.prototype = {
/**
* Return response to the activation request
 * @method activate
 * @return ActivationResponse
*/
activate: function() {
},
/**
* Get the result for this activation request handler
 * @method result
 * @return Result
*/
result: function() {
},
/**
* Get the metadata for this activation request handler
 * @method action_metadata
 * @return ActionMetadata
*/
action_metadata: function() {
},
/**
* Get the widget identifier for this activation request handler
 * @method widget_id
 * @return String
*/
widget_id: function() {
},
/**
* Get the action identifier for this activation request handler
 * @method action_id
 * @return String
*/
action_id: function() {
},
/**
* Check whether this query is still valid
 * @method valid
 * @return Boolean
*/
valid: function() {
},
/**
* Returns a dictionary with the scope's current settings
 * @method settings
 * @return Dictionary
*/
settings: function() {
}
};