1 /**
  2  * @class Monk.component.CollectionsQuickSearchComponent
  3  * @description A {@link Worbench.component.Component} for browsing text chunks.
  4  * @extends Workbench.component.Component
  5  * @author Stéfan Sinclair
  6  * @version 0.1
  7  * @since Monk 0.1
  8  */
  9 Monk.component.CollectionsQuickSearchComponent = function(args) {
 10 
 11     Monk.component.CollectionsQuickSearchComponent.superclass.constructor.call(this, args);
 12 }
 13 
 14 Workbench.extend(Monk.component.CollectionsQuickSearchComponent, Workbench.component.Component, {
 15 
 16     label : "Collections Quick Selector",
 17     description : "For quickly finding chunks that contain specified metadata.",
 18     "window" : this.window,
 19 
 20     handle : function(monkEvent, data){
 21     }
 22 	
 23 });
 24