/// <summary>
 /// Fills the list provided with the element matching the filter provided
 /// </summary>
 /// <param name="retVal">The list to be filled with the element matching the condition expressed in the filter</param>
 /// <param name="filter">The filter to apply</param>
 public override void fill(List <Utils.INamable> retVal, Filter.AcceptableChoice filter)
 {
     Expression.fill(retVal, filter);
     InitialValue.fill(retVal, filter);
     Condition.fill(retVal, filter);
 }