Changeset 1228 for branches/CEDMA-Refactoring-Ticket419/HeuristicLab.PluginInfrastructure/Interfaces
- Timestamp:
- 02/26/09 13:40:08 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.PluginInfrastructure/Interfaces/IPlugin.cs
r2 r1228 30 30 /// assemblies of the plugin. Plugin developers can use the properties of this interface to store 31 31 /// plugin data (name, version, files, update location ...). 32 /// The methods On Install(), OnDelete(), OnPreUpdate(), OnPostUpdate() are called by the framework32 /// The methods OnLoad(), OnInstall(), OnDelete(), OnPreUpdate(), OnPostUpdate() are called by the framework 33 33 /// when the corresponding actions are executed. This mechanism allows that the plugin reacts to such 34 34 /// events. For instance to store plugin specific settings. … … 42 42 string[] Files { get; } 43 43 44 45 /// <summary> 46 /// Called by the framework whenever the plugin is loaded. 47 /// Plugins are loaded once at startup and then each time a new application is started from the starter. 48 /// </summary> 49 void OnLoad(); 44 50 /// <summary> 45 51 /// called by the framework after the plugin was successfully installed
Note: See TracChangeset
for help on using the changeset viewer.