Serialized Form


Package org.apache.lucene.swing.models

Class org.apache.lucene.swing.models.ListSearcher extends javax.swing.AbstractListModel implements Serializable

Serialized Fields

listModel

javax.swing.ListModel listModel

rowToModelIndex

java.util.ArrayList<E> rowToModelIndex
The reference links between the decorated ListModel and this list model based on search criteria


directory

RAMDirectory directory
In memory lucene index


analyzer

Analyzer analyzer
Cached lucene analyzer


searchString

java.lang.String searchString
Cache the current search String. Also used internally to key whether there is an active search running or not. i.e. if searchString is null, there is no active search.


listModelListener

javax.swing.event.ListDataListener listModelListener

Class org.apache.lucene.swing.models.TableSearcher extends javax.swing.table.AbstractTableModel implements Serializable

Serialized Fields

tableModel

javax.swing.table.TableModel tableModel
The inner table model we are decorating


tableModelListener

javax.swing.event.TableModelListener tableModelListener
This listener is used to register this class as a listener to the decorated table model for update events


rowToModelIndex

java.util.ArrayList<E> rowToModelIndex
these keeps reference to the decorated table model for data only rows that match the search criteria are linked


directory

RAMDirectory directory
In memory lucene index


analyzer

Analyzer analyzer
Cached lucene analyzer


searchString

java.lang.String searchString
Cache the current search String. Also used internally to key whether there is an active search running or not. i.e. if searchString is null, there is no active search.



Copyright © 2000-2011 Apache Software Foundation. All Rights Reserved.