public class SearchEvent
extends java.util.EventObject
| Constructor and Description |
|---|
SearchEvent(java.lang.Object source,
java.lang.String params,
boolean searching)
Represents a change in the SearchEngine.
|
SearchEvent(java.lang.Object source,
java.lang.String params,
boolean searching,
java.util.Vector items)
Represents a change in the SearchEngine.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getParams()
Returns the parameters to the query.
|
java.util.Enumeration |
getSearchItems()
An enumerated list of SearchItems that match parameters of the query.
|
boolean |
isSearchCompleted()
A boolean value that indicates if the search is completed.
|
public SearchEvent(java.lang.Object source,
java.lang.String params,
boolean searching)
source - The source of this event.params - The search parameters.searching - A boolean operator that indicates if searching is
executing (true) or stopped (false).java.lang.IllegalArgumentException - if source, or params is NULL.public SearchEvent(java.lang.Object source,
java.lang.String params,
boolean searching,
java.util.Vector items)
source - The source of this event.params - The search parameters.searching - A boolean operator that indicates if a search is
executing (true) or stopped (false).items - A Vector of SearchItems matching the the search params.java.lang.IllegalArgumentException - if source, params, or items is NULL.java.javahelp.SearchItemspublic java.lang.String getParams()
public boolean isSearchCompleted()
public java.util.Enumeration getSearchItems()