C# Class Habanero.Faces.Base.DefaultBOCreator

Creates business objects. The default creator is used by facilities like ReadOnlyGridControl to create new business objects. Inherit from this class if you need to carry out additional steps at the time of creating a new business object.
Inheritance: IBusinessObjectCreator
ファイルを表示 Open project: Chillisoft/habanero.faces Class Usage Examples

Public Methods

Method Description
CreateBusinessObject ( ) : IBusinessObject

Creates the object, without editing or saving it.

DefaultBOCreator ( ClassDef classDef ) : Habanero.Base

Constructor to initialise a new object creator

DefaultBOCreator ( IBusinessObjectCollection boCol ) : Habanero.Base

Constructor to initialise a new object creator

Method Details

CreateBusinessObject() public method

Creates the object, without editing or saving it.
public CreateBusinessObject ( ) : IBusinessObject
return IBusinessObject

DefaultBOCreator() public method

Constructor to initialise a new object creator
public DefaultBOCreator ( ClassDef classDef ) : Habanero.Base
classDef ClassDef The class definition
return Habanero.Base

DefaultBOCreator() public method

Constructor to initialise a new object creator
public DefaultBOCreator ( IBusinessObjectCollection boCol ) : Habanero.Base
boCol IBusinessObjectCollection The collection this BO will be created as part of /// (it will be added to the collection proper when it is saved)
return Habanero.Base