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