Changeset 2744 for branches/Persistence Test/HeuristicLab.MainForm
- Timestamp:
- 02/03/10 18:32:57 (15 years ago)
- Location:
- branches/Persistence Test
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/Persistence Test
- Property svn:externals set to
-
branches/Persistence Test/HeuristicLab.MainForm/3.2/HeuristicLabMainFormPlugin.cs
r2406 r2744 26 26 27 27 namespace HeuristicLab.Modeling.Database { 28 [ ClassInfo(Name ="HeuristicLab.MainForm-3.2")]29 [PluginFile( Filename = "HeuristicLab.MainForm-3.2.dll", Filetype =PluginFileType.Assembly)]28 [Plugin("HeuristicLab.MainForm-3.2")] 29 [PluginFile("HeuristicLab.MainForm-3.2.dll", PluginFileType.Assembly)] 30 30 public class HeuristicLabMainFormPlugin : PluginBase { 31 31 } -
branches/Persistence Test/HeuristicLab.MainForm/3.2/MainFormManager.cs
r2468 r2744 42 42 if (MainFormManager.mainform == null) { 43 43 MainFormManager.mainform = mainform; 44 45 DiscoveryService ds = new DiscoveryService();46 44 IEnumerable<Type> types = 47 from t in ds.GetTypes(typeof(IView))45 from t in ApplicationManager.Manager.GetTypes(typeof(IView)) 48 46 where !t.IsAbstract && !t.IsInterface && !t.IsGenericType && ContentAttribute.HasContentAttribute(t) 49 47 select t;
Note: See TracChangeset
for help on using the changeset viewer.