package genegui; /** Interface for communicating with either TimeGraph of Graph Panel class @author WJS */ public interface OptionsPanelInterface { /** Turns grid display on or off. @param boolean b @author WJS */ public void setGridOn(boolean b); /** Set spacing for grid pattern. @param int spacing @author WJS */ public void setGridSpacing(int spacing); /** Turns legend display on or off. @param boolean b @author WJS */ public void setLegendOn(boolean b); /** Turns range display on or off. @param boolean b @author WJS */ public void setRangeOn(boolean b); /** Set scale of X axis @param float scale @author WJS */ public void setXScale(float scale); /** Set scale of Y axis @param float scale @author WJS */ public void setYScale(float scale); }