Class RMIconUtils.CompositeIcon

  • All Implemented Interfaces:
    javax.swing.Icon
    Enclosing class:
    RMIconUtils

    public static class RMIconUtils.CompositeIcon
    extends java.lang.Object
    implements javax.swing.Icon
    An icon implementation that draws two icons.
    • Constructor Summary

      Constructors 
      Constructor Description
      CompositeIcon​(javax.swing.Icon anIcon1, javax.swing.Icon anIcon2)
      Creates a new CompositeIcon.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      int getIconHeight()
      Returns the height of icon1.
      int getIconWidth()
      Returns the width of icon1.
      void paintIcon​(java.awt.Component aComponent, java.awt.Graphics aGraphics, int x, int y)
      Paints the icons.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CompositeIcon

        public CompositeIcon​(javax.swing.Icon anIcon1,
                             javax.swing.Icon anIcon2)
        Creates a new CompositeIcon.
    • Method Detail

      • getIconWidth

        public int getIconWidth()
        Returns the width of icon1.
        Specified by:
        getIconWidth in interface javax.swing.Icon
      • getIconHeight

        public int getIconHeight()
        Returns the height of icon1.
        Specified by:
        getIconHeight in interface javax.swing.Icon
      • paintIcon

        public void paintIcon​(java.awt.Component aComponent,
                              java.awt.Graphics aGraphics,
                              int x,
                              int y)
        Paints the icons.
        Specified by:
        paintIcon in interface javax.swing.Icon