Last change
on this file since 18040 was
17828,
checked in by dpiringe, 4 years ago
|
#3026
- removed the option to set the value for JsonItems via exporter
- reworked some base controls
- added new controls for JsonItem specific properties (e.g. ArrayResizable)
- deleted a lot of obsolet controls
- removed the Enable checkbox in the detail view of JsonItems
- exporter now clones the IOptimizer object
- added a check + message for unsupported exports
- list of JsonItems now includes unsupported JsonItems (disabled and marked with 'unsupported')
- refactored the converter type check
- now every converter has to specify its supported type(s)
|
File size:
312 bytes
|
Rev | Line | |
---|
[17828] | 1 | using System.Collections;
|
---|
| 2 | using System.Collections.Generic;
|
---|
[17473] | 3 |
|
---|
| 4 | namespace HeuristicLab.JsonInterface {
|
---|
| 5 | public interface IConcreteRestrictedJsonItem<T> : IJsonItem {
|
---|
[17519] | 6 | /// <summary>
|
---|
[17828] | 7 | /// array of restricted items
|
---|
[17519] | 8 | /// </summary>
|
---|
[17473] | 9 | IEnumerable<T> ConcreteRestrictedItems { get; set; }
|
---|
| 10 | }
|
---|
| 11 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.