Пример #1
0
 /** Adds an item to the list. */
 private void addItem(List<String[]> items, ManualInstrument instrument, Type type)
     throws AssertionError {
   items.add(
       new String[] {
         instrument.getQualifiedName(),
         type.toString(),
         instrument.getDescription(),
         TypeUtils.defaultValue(type).toString()
       });
 }