Click or drag to resize
IImporter Interface
Interface to be used on an importer class, and which is mainly used to generically use the importer instance without knowing the generic type.

Namespace:  SD.LLBLGen.Pro.ApplicationCore
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public interface IImporter

The IImporter type exposes the following members.

Properties
  NameDescription
Public propertyDescription
Gets the description of the importer, which is used to make it easy for users to select the right importer.
Public propertyFirstLevelDataRetrievalMessage
Gets the first level data retrieval message, which is displayed during the retrieval of the first-level information.
Public propertyImportMappingsAndRelationalModelData
Gets or set a value indicating whether mappings and relational model data has to be imported as well.
Public propertyImportSuperTypesAutomatically
Gets or set a value indicating whether supertypes have to be imported automatically.
Public propertySubTaskProgressInitHandler
The handler of the SubTaskProgressInitCallBack. Setting this property will allow Start to reflect its current progress of subtasks executed within a general task in the progress viewer.
Public propertySubTaskProgressTaskCompletedHandler
The handler of the SubTaskProgressTaskCompletedCallBack. Setting this property will allow Start to reflect its current progress of subtasks executed within a general task in the progress viewer.
Public propertySubTaskProgressTaskStartHandler
The handler of the SubTaskProgressTaskStartCallBack. Setting this property will allow Start to reflect its current progress of subtasks executed within a general task in the progress viewer.
Public propertyTaskProgressInitHandler
The handler of the TaskProgressInitCallBack. Setting this property will allow Start to reflect its current progress of general tasks in the progress viewer.
Public propertyTaskProgressTaskCompletedHandler
The handler of the TaskProgressTaskCompletedCallBack. Setting this property will allow Start to reflect its current progress of general tasks in the progress viewer.
Public propertyTaskProgressTaskStartHandler
The handler of the TaskProgressTaskStartCallBack. Setting this property will allow Start to reflect its current progress of general tasks in the progress viewer.
Top
Methods
  NameDescription
Public methodCreateSourceDataCollector
Creates the source data collector object which is used to let the user specify the source information where the data to import is located so the importer can load it.
Public methodGetFirstLevelInfo
Gets the first level info objects. This information is shown in a UI which allows the user to select which elements to retrieve. These elments (same objects as returned by this method) are then passed to the method to obtain the second level info, which is the information to merge with the loaded project
Public methodGetSecondLevelInfo
Gets the second level info. This information is the information to import into the live project. All elements to import are specified in elementsToImport and combined with the settings set on this importer, the importer will fill an ImportableData instance and returns that
Public methodReset
Resets this instance. Use this method to reset any objects created during a previous import cycle.
Public methodSetCallBacks
Sets the call backs to use for this generator
Top
See Also