- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleArray.cs
r14185 r14929 21 21 22 22 using HeuristicLab.Common; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Data { 26 [StorableType("d9eaccc2-7e48-48a6-b819-d6c50acf6533")] 25 27 public interface IStringConvertibleArray : IContent, IValueTypeArray { 26 28 bool Validate(string value, out string errorMessage); -
branches/PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleMatrix.cs
r14185 r14929 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Common; 25 using HeuristicLab.Persistence; 25 26 26 27 namespace HeuristicLab.Data { 28 [StorableType("781c8935-07b7-4a65-bbd9-6198d529f5a1")] 27 29 public interface IStringConvertibleMatrix : IContent { 28 30 int Rows { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleValue.cs
r14185 r14929 22 22 using System; 23 23 using HeuristicLab.Common; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Data { 27 [StorableType("dd7d252d-ae53-4805-bcc3-7f95e8197fb0")] 26 28 public interface IStringConvertibleValue : IContent { 27 29 bool ReadOnly { get; } -
branches/PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleValueTuple.cs
r14185 r14929 20 20 #endregion 21 21 using HeuristicLab.Core; 22 using HeuristicLab.Persistence; 23 22 24 namespace HeuristicLab.Data { 25 [StorableType("c3cd8a3b-9968-4d6e-931a-30955d319d42")] 23 26 public interface IStringConvertibleValueTuple : IItem { 24 27 IStringConvertibleValue Item1 { get; } -
branches/PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IValueTypeArray.cs
r13695 r14929 27 27 using HeuristicLab.Common; 28 28 using HeuristicLab.Core; 29 using HeuristicLab.Persistence; 29 30 30 31 namespace HeuristicLab.Data { 32 [StorableType("7bcabd08-a781-4623-b60f-a56b2471b108")] 31 33 public interface IValueTypeArray : IItem, IEnumerable { 32 34 bool ReadOnly { get; } … … 44 46 } 45 47 48 [StorableType("25976fe2-abe7-4ebf-ab30-8720eaa8d642")] 46 49 public interface IValueTypeArray<T> : IValueTypeArray, IEnumerable<T> where T : struct { 47 50 T this[int index] { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.