public interface PdoSearchDialogFactory
PdoSearchDialogs.| Modifier and Type | Method and Description |
|---|---|
<T extends PersistentDomainObject<T>> |
createPdoSearchDialog(Component comp,
DomainContext context,
Class<T> searchClass,
SelectionFilter selectionFilter,
boolean allowCreate,
boolean modal)
Creates a search dialog.
|
<T extends PersistentDomainObject<T>> |
createPdoSearchDialog(Component comp,
PdoSearch<T> pdoSearch,
SelectionFilter selectionFilter,
boolean allowCreate,
boolean modal)
Creates a search dialog.
|
<T extends PersistentDomainObject<T>> |
createPdoSearchDialog(DomainContext context,
Class<T> searchClass,
SelectionFilter selectionFilter,
boolean allowCreate,
boolean modal)
Creates a search dialog.
|
static PdoSearchDialogFactory |
getInstance()
The singleton.
|
static PdoSearchDialogFactory getInstance()
<T extends PersistentDomainObject<T>> PdoSearchDialog<T> createPdoSearchDialog(Component comp, PdoSearch<T> pdoSearch, SelectionFilter selectionFilter, boolean allowCreate, boolean modal)
T - the pdo typecomp - the component to determine the owner window, null if nonepdoSearch - the search pluginselectionFilter - filter selectable objects, null if nothing selectableallowCreate - true if "new"-button for creation of a new object of searchClassmodal - true if modal dialog
<T extends PersistentDomainObject<T>> PdoSearchDialog<T> createPdoSearchDialog(Component comp, DomainContext context, Class<T> searchClass, SelectionFilter selectionFilter, boolean allowCreate, boolean modal)
T - the pdo typecomp - the component to determine the owner window, null if nonecontext - the database contextsearchClass - the object class'es table to search in, null = all tablesselectionFilter - filter selectable objects, null if nothing selectableallowCreate - true if "new"-button for creation of a new object of searchClassmodal - true if modal dialog
<T extends PersistentDomainObject<T>> PdoSearchDialog<T> createPdoSearchDialog(DomainContext context, Class<T> searchClass, SelectionFilter selectionFilter, boolean allowCreate, boolean modal)
T - the pdo typecontext - the database contextsearchClass - the object class'es table to search in, null = all tablesselectionFilter - filter selectable objects, null if nothing selectableallowCreate - true if "new"-button for creation of a new object of searchClassmodal - true if modal dialog
Tentackle - a domain driven enterprise framework