Package org.jzy3d.bridge
Interface BufferedPanel
- All Known Implementing Classes:
- AWTDoubleBufferedPanel,- AWTSimpleBufferedPanel,- SwingDoubleBufferedPanel,- SwingSimpleBufferedPanel
public interface BufferedPanel
A 
BufferedPanel provides a common interface for AWT or Swing, and Simple or Double
 buffered panels.- 
Method SummaryModifier and TypeMethodDescriptionvoidThe actual draw method that must be defined by a concrete BufferedPanel.Supposed to be provided by the implementing abstract class.intSupposed to be provided by the implementing abstract class.intgetWidth()Supposed to be provided by the implementing abstract class.
- 
Method Details- 
drawThe actual draw method that must be defined by a concrete BufferedPanel.
- 
getGraphicsGraphics getGraphics()Supposed to be provided by the implementing abstract class.
- 
getWidthint getWidth()Supposed to be provided by the implementing abstract class.
- 
getHeightint getHeight()Supposed to be provided by the implementing abstract class.
 
-