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