File: /home/alex/dev/work/webapps/branches/scopes/doc/src/bindings/src/category.js
/**
*
* A set of related results returned by a scope
* and displayed within a single pane in the Unity dash.
*
* To create a Category, use SearchReply.register_category.
*
* @module ScopeJS
* @class Category
*/
function Category(){}
Category.prototype = {
/**
* Get identifier of this Category
* @method id
* @return String The category identifier.
*/
id: function() {
},
/**
* Get title of this Category
* @method title
* @return String The category title.
*/
title: function() {
},
/**
* Get icon of this Category
* @method icon
* @return String The category icon.
*/
icon: function() {
},
/**
* Query to perform when this category is expanded
* @method query
* @return CannedQuery The expansion query or null.
*/
query: function() {
}
};