org.das2.jythoncompletion.ui.LazyListModel.Filter

Interface for those that wish to filter content of the list. This filter is expected to always return the same result for the same object - e.g. either always exclude or include it.


accept

accept( Object obj ) → boolean

Parameters

obj - an Object

Returns:

boolean

[search for examples] [view on GitHub] [view on old javadoc] [view source]


scheduleUpdate

scheduleUpdate( java.lang.Runnable run ) → void

This method is called when the list needs update. It's goal is usually to do SwingUtilities.invokeLater, even more rafined methods are allowed.

Parameters

run - a Runnable

Returns:

void (returns nothing)

[search for examples] [view on GitHub] [view on old javadoc] [view source]