Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2520: added missing StorableType attributes for interfaces

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