Changeset 17097 for stable/HeuristicLab.Data/3.3/Interfaces
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Data
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration/HeuristicLab.Data/3.3 (added) merged: 16452-16454,16462,16474,16529,16539,16558-16559 /trunk/HeuristicLab.Data/3.3 merged: 16565,16568
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleArray.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 21 21 22 22 using HeuristicLab.Common; 23 using HEAL.Attic; 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); -
stable/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleMatrix.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Common; 25 using HEAL.Attic; 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; } -
stable/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleValue.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using HeuristicLab.Common; 24 using HEAL.Attic; 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; } -
stable/HeuristicLab.Data/3.3/Interfaces/IStringConvertibleValueTuple.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 20 20 #endregion 21 21 using HeuristicLab.Core; 22 using HEAL.Attic; 23 22 24 namespace HeuristicLab.Data { 25 [StorableType("691961d0-d8ff-436d-a4df-01abeed6e5af")] 23 26 public interface IStringConvertibleValueTuple : IItem { 24 27 IStringConvertibleValue Item1 { get; } -
stable/HeuristicLab.Data/3.3/Interfaces/IValueTypeArray.cs
r15584 r17097 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 27 27 using HeuristicLab.Common; 28 28 using HeuristicLab.Core; 29 using HEAL.Attic; 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.