Here you can find the source of convertPoint(MouseEvent evt, Component target)
public static Point convertPoint(MouseEvent evt, Component target)
//package com.java2s; /*/*from w ww. ja va 2 s.c om*/ * This file is part of the Jose Project * see http://jose-chess.sourceforge.net/ * (c) 2002-2006 Peter Sch?fer * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * */ import javax.swing.*; import java.awt.*; import java.awt.event.MouseEvent; public class Main { public static Point convertPoint(MouseEvent evt, Component target) { return SwingUtilities.convertPoint(evt.getComponent(), evt.getPoint(), target); } }