- Timestamp:
- 02/01/21 14:37:18 (4 years ago)
- Location:
- branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IConcreteRestrictedJsonItem.cs
r17519 r17828 1 using System.Collections.Generic; 1 using System.Collections; 2 using System.Collections.Generic; 2 3 3 4 namespace HeuristicLab.JsonInterface { 4 5 public interface IConcreteRestrictedJsonItem<T> : IJsonItem { 5 6 /// <summary> 6 /// The item,7 /// array of restricted items 7 8 /// </summary> 8 9 IEnumerable<T> ConcreteRestrictedItems { get; set; } -
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Interfaces/IJsonItemConverter.cs
r17519 r17828 29 29 /// </summary> 30 30 int Priority { get; } 31 32 /// <summary> 33 /// Checks if the given type can be converted. 34 /// </summary> 35 /// <param name="t"></param> 36 /// <returns></returns> 37 bool CanConvertType(Type t); 31 38 } 32 39 }
Note: See TracChangeset
for help on using the changeset viewer.