Package org.adempiere.ui.swing.factory
Class DefaultInfoFactory
- java.lang.Object
-
- org.adempiere.ui.swing.factory.DefaultInfoFactory
-
- All Implemented Interfaces:
IInfoFactory
public class DefaultInfoFactory extends Object implements IInfoFactory
- Author:
- hengsin
-
-
Constructor Summary
Constructors Constructor Description DefaultInfoFactory()
-
Method Summary
All Methods Instance Methods Concrete 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 queryValue, boolean multiSelection, String whereClause)
Factory Constructor
-
-
-
Method Detail
-
create
public Info create(Frame frame, boolean modal, Lookup lookup, GridField field, String tableName, String keyColumn, String queryValue, boolean multiSelection, String whereClause)
Description copied from interface:IInfoFactory
Factory Constructor- Specified by:
create
in interfaceIInfoFactory
- Parameters:
frame
- parent framemodal
- new window is modallookup
- Lookupfield
- Grid fieldtableName
- table name of the searchkeyColumn
- key column of the searchqueryValue
- query valuemultiSelection
- allow to select more than one rowwhereClause
- fully qualified where clause for the search- Returns:
- special or general Info Window
-
create
public Info create(Frame frame, boolean modal, int WindowNo, String tableName, String keyColumn, String value, boolean multiSelection, String whereClause, boolean lookup)
Description copied from interface:IInfoFactory
Factory Constructor- Specified by:
create
in interfaceIInfoFactory
- 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 search- Returns:
- special or general Info Window
-
-