Click or drag to resize
ImporterBaseTRetriever Class
Abstract base class for importer classes, which are used to import model/meta-data from external sources
Inheritance Hierarchy
SystemObject
  SD.LLBLGen.Pro.ApplicationCore.ExtensibilityImporterBaseTRetriever

Namespace:  SD.LLBLGen.Pro.ApplicationCore.Extensibility
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.3.0.0 (5.3.0)
Syntax
public abstract class ImporterBase<TRetriever> : IImporter
where TRetriever : ImportInformationRetrieverBase

Type Parameters

TRetriever

The ImporterBaseTRetriever type exposes the following members.

Constructors
  NameDescription
Protected methodImporterBaseTRetriever
Initializes a new instance of the ImporterBaseTRetriever class.
Top
Properties
  NameDescription
Protected propertyDataCollector
Gets or sets the data collector object
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.
Protected propertyInformationRetriever
Gets the information retriever instance which is the object which does the actual import work.
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
Protected methodCreateRetriever
Creates the retriever which is used to obtain the info to import, and does that on a separate appDomain
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 methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
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 methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
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 methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
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
Public methodToString
Returns a String that represents this instance.
(Overrides ObjectToString.)
Top
See Also