Interface BufferedPanel

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void draw​(Graphics g)
      The actual draw method that must be defined by a concrete BufferedPanel.
      Graphics getGraphics()
      Supposed to be provided by the implementing abstract class.
      int getHeight()
      Supposed to be provided by the implementing abstract class.
      int getWidth()
      Supposed to be provided by the implementing abstract class.
    • Method Detail

      • draw

        void draw​(Graphics g)
        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.