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:
  • Field Details

    • lbl_name

      JLabel lbl_name
    • lbl_descrip

      JLabel lbl_descrip
    • lbl_ver

      JLabel lbl_ver
    • lbl_verVal

      JLabel lbl_verVal
    • lbl_author

      JLabel lbl_author
    • lbl_authorVal

      JLabel lbl_authorVal
    • lbl_home

      JLabel lbl_home
    • lbl_homVal

      JLabel lbl_homVal
    • lbl_nameUni

      JLabel lbl_nameUni
    • lbl_License

      JLabel lbl_License
  • Constructor Details

    • AboutPanel

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

    • openURL

      private void openURL(String url)
      Opens default browser using the given URL
      Parameters:
      url - the url of a webpage
    • 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