KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > raptus > owxv3 > api > SearchResult


1 /*
2  * eAdmin/OWX
3  * Copyright (C) 1996-2003 OWX-Project Team <owx-team@gmx.net>
4  */

5
6 /**
7  *
8  * <hr>
9  * <table width="100%" border="0">
10  * <tr>
11  * <td width="24%"><b>Filename</b></td><td width="76%">SearchResult.java</td>
12  * </tr>
13  * <tr>
14  * <td width="24%"><b>Author</b></td><td width="76%">REEA</td>
15  * </tr>
16  * <tr>
17  * <td width="24%"><b>Date</b></td><td width="76%">12th of October 2001</td>
18  * </tr>
19  * </table>
20  * <hr>
21  * <table width="100%" border="0">
22  * <tr>
23  * <td width="24%"><b>Date / Author</b></td><td width="76%"><b>Changes</b></td>
24  * </tr>
25  * </table>
26  * <hr>
27  *
28  *Respresents a SearchResult.
29  */

30 package com.raptus.owxv3.api;
31
32 import java.util.*;
33
34 public interface SearchResult {
35
36     public int getKey();
37
38     public String JavaDoc getField(String JavaDoc fieldname);
39
40     
41     public String JavaDoc getURL();
42     
43     public Vector getFiles();
44     
45     public Vector getPictures();
46     
47     public Vector getLinks();
48
49 }
50
51
Popular Tags