5 |
public interface SearchResult { |
public interface SearchResult { |
6 |
|
|
7 |
/** |
/** |
8 |
* @returns a {@link String} that represents the Title/Name of this search |
* @return a {@link String} that represents the Title/Name of this search |
9 |
* result. |
* result. |
10 |
* |
* |
11 |
*/ |
*/ |
18 |
void open(); |
void open(); |
19 |
|
|
20 |
/** |
/** |
21 |
* @returns a {@link String} that represents the Title/Name of "something" that contains the search |
* @return a {@link String} that represents the Title/Name of "something" that contains the search |
22 |
* result. This may return "" if it makes no sense. |
* result. This may return "" if it makes no sense. |
23 |
*/ |
*/ |
24 |
String getInTitle(); |
String getInTitle(); |