Changeset 9754 for branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views
- Timestamp:
- 07/25/13 11:14:56 (11 years ago)
- Location:
- branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/ConvexHullView.cs
r9730 r9754 30 30 namespace HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views { 31 31 [View("ConvexHull View")] 32 [Content(typeof(PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>), false)]32 [Content(typeof(PermutationSolutionDictionary), false)] 33 33 public partial class ConvexHullView : ItemView { 34 34 public ConvexHullView() { … … 36 36 } 37 37 38 public new PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>Content {39 get { return (PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>)base.Content; }38 public new PermutationSolutionDictionary Content { 39 get { return (PermutationSolutionDictionary)base.Content; } 40 40 set { base.Content = value; } 41 41 } -
branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views/3.3/PermutationSolutionDictionaryView.cs
r9730 r9754 29 29 namespace HeuristicLab.Analysis.AlgorithmBehavior.Analyzers.Views { 30 30 [View("PermutationSolutionDictionary View")] 31 [Content(typeof(PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>), true)]31 [Content(typeof(PermutationSolutionDictionary), true)] 32 32 public partial class PermutationSolutionDictionaryView : ItemView { 33 33 public PermutationSolutionDictionaryView() { … … 35 35 } 36 36 37 public new PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>Content {38 get { return (PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>)base.Content; }37 public new PermutationSolutionDictionary Content { 38 get { return (PermutationSolutionDictionary)base.Content; } 39 39 set { base.Content = value; } 40 40 } … … 55 55 protected override void OnInitialized(EventArgs e) { 56 56 base.OnInitialized(e); 57 var viewTypes = MainFormManager.GetViewTypes(typeof(PermutationSolutionDictionary <PermutationWrapper, PermutationInformation>), true);57 var viewTypes = MainFormManager.GetViewTypes(typeof(PermutationSolutionDictionary), true); 58 58 foreach (Type viewType in viewTypes.OrderBy(x => ViewAttribute.GetViewName(x))) { 59 59 if ((viewType != typeof(PermutationSolutionDictionaryView)) && (viewType != typeof(ViewHost))) {
Note: See TracChangeset
for help on using the changeset viewer.