1 package example.xml;
2 
3 import java.util.Collections;
4 
5 public class FlashMemory implements Contacts {
6 
findByName(String name)7   public Iterable<Contact> findByName(String name) {
8     return Collections.emptyList();
9   }
10 }
11