/** * IQuark is the interface for anything that wants to look like a Quark. * * @author Thornton Rose */ public interface IQuark { /** * Get the flavor. */ public String getFlavor(); /** * Set the flavor. */ public void setFlavor(String newFlavor); /** * Spin */ public void spin(); }