Changeset 13566
- Timestamp:
- 01/25/16 17:34:49 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/InstrumentedOperator.cs
r12012 r13566 61 61 Parameters.Add(new FixedValueParameter<OperatorList>(AfterExecutionOperatorsParameterName, "Actions that are executed after the execution of the operator", new OperatorList())); 62 62 BeforeExecutionOperatorsParameter.Hidden = true; 63 BeforeExecutionOperatorsParameter.GetsCollected = false; 63 64 AfterExecutionOperatorsParameter.Hidden = true; 65 AfterExecutionOperatorsParameter.GetsCollected = false; 64 66 } 65 67 … … 77 79 } 78 80 #endregion 81 } 82 83 protected override IEnumerable<KeyValuePair<string, IItem>> GetCollectedValues(IValueParameter param) { 84 foreach (var b in base.GetCollectedValues(param)) yield return b; 85 if (param != BeforeExecutionOperatorsParameter && param != AfterExecutionOperatorsParameter) yield break; 86 var operatorList = param.Value as OperatorList; 87 if (operatorList != null) { 88 var counter = 0; 89 foreach (var op in operatorList) { 90 yield return new KeyValuePair<string, IItem>(counter.ToString(), op); 91 var children = new Dictionary<string, IItem>(); 92 op.CollectParameterValues(children); 93 foreach (var c in children) yield return new KeyValuePair<string, IItem>(counter + "." + c.Key, c.Value); 94 counter++; 95 } 96 } 79 97 } 80 98
Note: See TracChangeset
for help on using the changeset viewer.