Package org.adempiere.ui.swing.factory
Interface IInfoFactory
-
- All Known Implementing Classes:
DefaultInfoFactory
public interface IInfoFactory
- Author:
- hengsin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Info
create(Frame frame, boolean modal, int WindowNo, String tableName, String keyColumn, String value, boolean multiSelection, String whereClause, boolean lookup)
Factory ConstructorInfo
create(Frame frame, boolean modal, Lookup lookup, GridField field, String tableName, String keyColumn, String value, boolean multiSelection, String whereClause)
Factory Constructor
-
-
-
Method Detail
-
create
Info create(Frame frame, boolean modal, Lookup lookup, GridField field, String tableName, String keyColumn, String value, boolean multiSelection, String whereClause)
Factory Constructor- Parameters:
frame
- parent framemodal
- new window is modallookup
- Lookupfield
- Grid fieldtableName
- table name of the searchkeyColumn
- key column of the searchvalue
- query valuemultiSelection
- allow to select more than one rowwhereClause
- fully qualified where clause for the search- Returns:
- special or general Info Window
-
create
Info create(Frame frame, boolean modal, int WindowNo, String tableName, String keyColumn, String value, boolean multiSelection, String whereClause, boolean lookup)
Factory Constructor- Parameters:
frame
- parent framemodal
- new window is modalWindowNo
- window notableName
- table name of the searchkeyColumn
- key column of the searchvalue
- query valuemultiSelection
- allow to select more than one rowwhereClause
- fully qualified where clause for the searchlookup
-- Returns:
- special or general Info Window
-
-