01: package org.columba.core.search.api;
02:
03: import java.net.URI;
04:
05: /**
06: * Search Result
07: *
08: * @author frd
09: */
10: public interface ISearchResult {
11:
12: /**
13: * Returns title of search result.
14: *
15: * @return
16: */
17: public String getTitle();
18:
19: /**
20: * Returns description of search result.
21: *
22: * @return
23: */
24: public String getDescription();
25:
26: /**
27: * Returns location of search result object. This location can be used to navigate
28: * directly in the component.
29: *
30: * @return
31: */
32: public URI getLocation();
33: }
|