001 package org.picocontainer.doc.introduction; 002 003 // START SNIPPET: class 004 005 public interface Peelable { 006 void peel(); 007 } 008 009 // END SNIPPET: class