1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8interface Search_Query_Facet_Interface
9{
10	function getLabel();
11	function setLabel($label);
12	function getName();
13	function setName($name);
14	function getField();
15	function setRenderCallback($callback);
16	function render($value);
17	function getType();
18}
19