Searched defs:aPoint (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingUtilities.java162 * Convert a <code>aPoint</code> in <code>source</code> coordinate system to
164 * If <code>source</code> is {@code null}, <code>aPoint</code> is assumed to be in <code>destination</code>'s
166 * If <code>destination</code> is {@code null}, <code>aPoint</code> will be converted to <code>source</code>'s
168 * If both <code>source</code> and <code>destination</code> are {@code null}, return <code>aPoint</code>
171 public static Point convertPoint(Component source,Point aPoint,Component destination) { argument
175 return aPoint;
181 p = new Point(aPoint);

Completed in 47 milliseconds