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 | |
---|
1 | using System.Drawing;
|
---|
2 | using HeuristicLab.Core;
|
---|
3 | using HeuristicLab.Optimization;
|
---|
4 | using HEAL.Attic;
|
---|
5 |
|
---|
6 | namespace 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.