| Package | Description |
|---|---|
| com.jidesoft.swing |
The package contains many based classes we added on top of Swing for JIDE Common Layer.
|
| com.jidesoft.swing.event |
The package contains events for components under com.jidesoft.swing package for JIDE Common Layer.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ComboBoxSearchable
ComboBoxSearchable is an concrete implementation of Searchable that enables the search function
in non-editable JComboBox. |
class |
ListSearchable
ListSearchable is an concrete implementation of Searchable that enables the search function in
JList. |
class |
TableSearchable
TableSearchable is an concrete implementation of Searchable that enables the search function in
JTable. |
class |
TextComponentSearchable
TextComponentSearchable is an concrete implementation of Searchable that enables the search
function in JTextComponent. |
class |
TreeSearchable
TreeSearchable is an concrete implementation of Searchable that enables the search function in
JTree. |
| Modifier and Type | Method and Description |
|---|---|
Searchable |
SearchableBar.getSearchable()
Gets the underlying Searchable object.
|
Searchable |
AutoCompletion.getSearchable()
Gets the underlying Searchable.
|
static Searchable |
Searchable.getSearchable(javax.swing.JComponent component)
Gets the Searchable installed on the component.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchableBar |
SearchableBar.install(Searchable searchable,
javax.swing.KeyStroke keyStroke,
SearchableBar.Installer installer)
Installs a SearchableBar on a component.
|
static void |
SearchableUtils.uninstallSearchable(Searchable searchable)
Uninstall the searchable that was installed to a component
|
| Constructor and Description |
|---|
AutoCompletion(javax.swing.JComboBox comboBox,
Searchable searchable) |
AutoCompletion(javax.swing.text.JTextComponent textComponent,
Searchable searchable) |
SearchableBar(Searchable searchable)
Creates a searchable bar.
|
SearchableBar(Searchable searchable,
boolean compact)
Creates a searchable bar in compact mode or full mode.
|
SearchableBar(Searchable searchable,
java.lang.String initialText,
boolean compact)
Creates a searchable bar with initial searching text and in compact mode or full mode.
|
| Modifier and Type | Method and Description |
|---|---|
Searchable |
SearchableEvent.getSearchable()
Returns the originator of the event.
|
| Constructor and Description |
|---|
SearchableEvent(Searchable source,
int id)
Creates a
SearchableEvent. |