Class AboutPanel

All Implemented Interfaces:
MouseListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible, RootPaneContainer, WindowConstants

public class AboutPanel extends JDialog implements MouseListener
This java class is used to create and show a panel for description of the tool.
Author:
Sina Tabakhi
See Also:
  • Constructor Details

    • AboutPanel

      public AboutPanel()
      Creates new form AboutPanel. This method is called from within the constructor to initialize the form.
  • Method Details

    • mouseClicked

      public void mouseClicked(MouseEvent e)
      The listener method for receiving interesting mouse events on a component. Invoked when the mouse button has been clicked on a component.
      Specified by:
      mouseClicked in interface MouseListener
      Parameters:
      e - an mouse event
    • mousePressed

      public void mousePressed(MouseEvent e)
      The listener method for receiving interesting mouse events on a component. Invoked when the mouse button has been pressed on a component.
      Specified by:
      mousePressed in interface MouseListener
      Parameters:
      e - an mouse event
    • mouseReleased

      public void mouseReleased(MouseEvent e)
      The listener method for receiving interesting mouse events on a component. Invoked when the mouse button has been released on a component.
      Specified by:
      mouseReleased in interface MouseListener
      Parameters:
      e - an mouse event
    • mouseEntered

      public void mouseEntered(MouseEvent e)
      The listener method for receiving interesting mouse events on a component. Invoked when the mouse enters a component.
      Specified by:
      mouseEntered in interface MouseListener
      Parameters:
      e - an mouse event
    • mouseExited

      public void mouseExited(MouseEvent e)
      The listener method for receiving interesting mouse events on a component. Invoked when the mouse exits a component.
      Specified by:
      mouseExited in interface MouseListener
      Parameters:
      e - an mouse event