1 package org.picocontainer.doc.introduction;2 3 // START SNIPPET: class4 5 public interface Peelable {6 void peel();7 }8 9 // END SNIPPET: class10