- Timestamp:
- 12/31/18 08:14:11 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleArray.cs
r16453 r16474 21 21 22 22 using HeuristicLab.Common; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Data { 26 [StorableType("27217641-0839-4757-b8f6-6422114b096d")] 25 27 public interface IStringConvertibleArray : IContent, IValueTypeArray { 26 28 bool Validate(string value, out string errorMessage); -
branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleMatrix.cs
r16453 r16474 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Common; 25 using HEAL.Fossil; 25 26 26 27 namespace HeuristicLab.Data { 28 [StorableType("5da53526-d2cd-4f2c-bbc9-de34b457892c")] 27 29 public interface IStringConvertibleMatrix : IContent { 28 30 int Rows { get; set; } -
branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleValue.cs
r16453 r16474 22 22 using System; 23 23 using HeuristicLab.Common; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Data { 27 [StorableType("092ea088-1b35-4215-aebd-ee9731856d94")] 26 28 public interface IStringConvertibleValue : IContent { 27 29 bool ReadOnly { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleValueTuple.cs
r16453 r16474 20 20 #endregion 21 21 using HeuristicLab.Core; 22 using HEAL.Fossil; 23 22 24 namespace HeuristicLab.Data { 25 [StorableType("691961d0-d8ff-436d-a4df-01abeed6e5af")] 23 26 public interface IStringConvertibleValueTuple : IItem { 24 27 IStringConvertibleValue Item1 { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3/Interfaces/IValueTypeArray.cs
r16453 r16474 27 27 using HeuristicLab.Common; 28 28 using HeuristicLab.Core; 29 using HEAL.Fossil; 29 30 30 31 namespace HeuristicLab.Data { 32 [StorableType("548de1d4-69b4-40b4-ba37-e770575f7315")] 31 33 public interface IValueTypeArray : IItem, IEnumerable { 32 34 bool ReadOnly { get; } … … 44 46 } 45 47 48 [StorableType("f9db5740-1c4f-4f62-a9a8-84b32a461ea8")] 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.