- Timestamp:
- 07/08/16 14:40:02 (9 years ago)
- Location:
- branches/crossvalidation-2434
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/crossvalidation-2434
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Data/3.3
- Property svn:mergeinfo changed
/stable/HeuristicLab.Data/3.3 merged: 13316 /trunk/sources/HeuristicLab.Data/3.3 (added) merged: 13321,13397,13695,14025
- Property svn:mergeinfo changed
-
branches/crossvalidation-2434/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleArray.cs
r12012 r14029 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 22 using HeuristicLab.Common; 25 23 26 24 namespace HeuristicLab.Data { 27 public interface IStringConvertibleArray : IContent { 28 int Length { get; set; } 29 IEnumerable<string> ElementNames { get; set; } 30 31 bool ReadOnly { get; } 32 25 public interface IStringConvertibleArray : IContent, IValueTypeArray { 33 26 bool Validate(string value, out string errorMessage); 34 27 string GetValue(int index); 35 28 bool SetValue(string value, int index); 36 37 event EventHandler ElementNamesChanged;38 event EventHandler<EventArgs<int>> ItemChanged;39 event EventHandler Reset;40 29 } 41 30 }
Note: See TracChangeset
for help on using the changeset viewer.