| java.lang.Object com.ecyrd.jspwiki.QueryItem
QueryItem | public class QueryItem (Code) | | This simple class just fulfils the role of a container
for searches. It tells the word and whether it is requested or not.
author: Janne Jalkanen |
Field Summary | |
final public static int | FORBIDDEN | final public static int | REQUESTED The word should be in the pages, but the search engine may
use its own discretion. | final public static int | REQUIRED | public int | type The type of the word. | public String | word |
FORBIDDEN | final public static int FORBIDDEN(Code) | | The word may NOT be in the pages
|
REQUESTED | final public static int REQUESTED(Code) | | The word should be in the pages, but the search engine may
use its own discretion.
|
REQUIRED | final public static int REQUIRED(Code) | | The word is required to be in the pages
|
type | public int type(Code) | | The type of the word. See above for types. The default
is REQUESTED.
|
word | public String word(Code) | | The word that is being searched
|
|
|