Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/3.2/LabelProvider/ILabelProvider.cs @ 1993

Last change on this file since 1993 was 1993, checked in by mstoeger, 15 years ago

added many new persisted properties.
removed useless comments.
added XmlSupport class since the code for setting xml attributes is always the same.
#639

File size: 278 bytes
Line 
1using System.Xml;
2
3namespace HeuristicLab.Visualization.LabelProvider {
4  public interface ILabelProvider {
5    string GetLabel(double value);
6    XmlNode GetLabelProviderXmlNode(XmlDocument document);
7    ILabelProvider PopulateLabelProviderXmlNode(XmlNode node);
8  }
9}
Note: See TracBrowser for help on using the repository browser.