Interface PageDrawable

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void draw​(java.awt.Graphics2D g2, java.awt.geom.Rectangle2D area)
      Draws the object.
      java.awt.print.PageFormat getPageFormat()
      Describes the physical output characteristics like page size, margins, and imaginable area.
      java.awt.Dimension getPreferredSize()
      Returns the preferred size of the drawable.
      boolean isPreserveAspectRatio()
      Returns true, if this drawable will preserve an aspect ratio during the drawing.
    • Method Detail

      • getPageFormat

        java.awt.print.PageFormat getPageFormat()
        Describes the physical output characteristics like page size, margins, and imaginable area.
        Returns:
      • getPreferredSize

        java.awt.Dimension getPreferredSize()
        Returns the preferred size of the drawable. If the drawable is aspect ratio aware, these bounds should be used to compute the preferred aspect ratio for this drawable.
        Returns:
        the preferred size.
      • isPreserveAspectRatio

        boolean isPreserveAspectRatio()
        Returns true, if this drawable will preserve an aspect ratio during the drawing.
        Returns:
        true, if an aspect ratio is preserved, false otherwise.
      • draw

        void draw​(java.awt.Graphics2D g2,
                  java.awt.geom.Rectangle2D area)
        Draws the object.
        Parameters:
        g2 - the graphics device.
        area - the area inside which the object should be drawn.