Changeset 2744 for branches/Persistence Test/HeuristicLab.Constraints
- 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.Constraints/3.3/HeuristicLabConstraintsPlugin.cs
r1674 r2744 29 29 /// Plugin class for HeuristicLab.Constraints plugin. 30 30 /// </summary> 31 [ ClassInfo(Name ="HeuristicLab.Constraints-3.3")]32 [PluginFile( Filename = "HeuristicLab.Constraints-3.3.dll", Filetype =PluginFileType.Assembly)]33 [ Dependency(Dependency ="HeuristicLab.Core-3.3")]34 [ Dependency(Dependency ="HeuristicLab.Data-3.3")]35 [ Dependency(Dependency ="HeuristicLab.Persistence-3.3")]31 [Plugin("HeuristicLab.Constraints-3.3")] 32 [PluginFile("HeuristicLab.Constraints-3.3.dll", PluginFileType.Assembly)] 33 [PluginDependency("HeuristicLab.Core-3.3")] 34 [PluginDependency("HeuristicLab.Data-3.3")] 35 [PluginDependency("HeuristicLab.Persistence-3.3")] 36 36 public class HeuristicLabConstraintsPlugin : PluginBase { 37 37 } -
branches/Persistence Test/HeuristicLab.Constraints/3.3/NotConstraintView.cs
r1529 r2744 26 26 using System.Data; 27 27 using System.Text; 28 using System.Linq; 28 29 using System.Windows.Forms; 29 30 using HeuristicLab.PluginInfrastructure; … … 58 59 public NotConstraintView() { 59 60 InitializeComponent(); 60 DiscoveryService discoveryService = new DiscoveryService(); 61 itemTypes = discoveryService.GetTypes(typeof(ConstraintBase)); 61 itemTypes = ApplicationManager.Manager.GetTypes(typeof(ConstraintBase)).ToArray(); 62 62 for (int i = 0; i < itemTypes.Length; i++) { 63 63 subConstraintComboBox.Items.Add(itemTypes[i].Name);
Note: See TracChangeset
for help on using the changeset viewer.