Free cookie consent management tool by TermsFeed Policy Generator

source: addons/HeuristicLab.FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/BoxChart/IBoxChartElementGenerator.cs @ 17236

Last change on this file since 17236 was 16577, checked in by gkronber, 6 years ago

#2520: added missing StorableType attributes for interfaces

File size: 446 bytes
Line 
1using System.Drawing;
2using HeuristicLab.Core;
3using HeuristicLab.Optimization;
4using HEAL.Attic;
5
6namespace HeuristicLab.Analysis.FitnessLandscape.BoxCharts {
7  [StorableType("57F0E930-CB8F-4D30-9C44-ADA5B720727E")]
8  public interface IBoxChartElementGenerator : INamedItem {
9    int X { get; set; }
10    int Y { get; set; }
11    int ColSpan { get; set; }
12    int RowSpan { get; set; }
13    void Draw(IRun run, Graphics g);
14  }
15}
Note: See TracBrowser for help on using the repository browser.