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 Summary
Modifier 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
-
draw
The actual draw method that must be defined by a concrete BufferedPanel. -
getGraphics
Graphics getGraphics()Supposed to be provided by the implementing abstract class. -
getWidth
int getWidth()Supposed to be provided by the implementing abstract class. -
getHeight
int getHeight()Supposed to be provided by the implementing abstract class.
-