Esempio n. 1
0
 /// <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 void fill(List <Utils.INamable> retVal, Filter.AcceptableChoice filter)
 {
     if (Designator != null)
     {
         Designator.fill(retVal, filter);
     }
     else if (LiteralValue != null)
     {
         LiteralValue.fill(retVal, filter);
     }
 }