* @param create Indicates if the form should be created when it does not yet exist.
* @return The form or null if not available.
*/
public FilterDialog getFilterForm(boolean create) {
if (create)
filterForm = filterForm == null && isTopModule() ? new FilterDialog(this, getSearchView()) : filterForm;
return filterForm;
}