GtkListPeer.java, [...]: Fix handling of alias methods...

2004-02-03  Thomas Fitzsimmons  <fitzsim@redhat.com>

	* gnu/java/awt/peer/gtk/GtkListPeer.java,
	java/awt/BorderLayout.java, java/awt/CardLayout.java,
	java/awt/CheckboxGroup.java, java/awt/Choice.java,
	java/awt/Component.java, java/awt/Container.java,
	java/awt/FontMetrics.java, java/awt/GridBagLayout.java,
	java/awt/LayoutManager2.java, java/awt/List.java,
	java/awt/Menu.java, java/awt/MenuBar.java,
	java/awt/MenuItem.java, java/awt/Polygon.java,
	java/awt/Rectangle.java, java/awt/ScrollPane.java,
	java/awt/Scrollbar.java, java/awt/TextArea.java,
	java/awt/TextField.java,
	java/awt/image/renderable/RenderContext.java,
	javax/swing/JApplet.java: Fix handling of alias methods, where a
	method has been deprecated in favour of a new one with the same
	funtion but a different name.  Put the method implementation in
	the deprecated method and have the new method call the
	deprecated one.  Make all other code call the new method.

From-SVN: r77178
This commit is contained in:
Thomas Fitzsimmons
2004-02-03 17:10:56 +00:00
committed by Thomas Fitzsimmons
parent 5a98fa7bdb
commit b6d3cb37ef
23 changed files with 726 additions and 711 deletions
+16 -16
View File
@@ -257,11 +257,25 @@ public class Polygon implements Shape, Serializable
* @since 1.1
*/
public Rectangle getBounds()
{
return getBoundingBox ();
}
/**
* Returns the bounding box of this polygon. This is the smallest
* rectangle with sides parallel to the X axis that will contain this
* polygon.
*
* @return the bounding box for this polygon
* @see #getBounds2D()
* @deprecated use {@link #getBounds()} instead
*/
public Rectangle getBoundingBox()
{
if (bounds == null)
{
if (npoints == 0)
return bounds = new Rectangle();
return bounds = new Rectangle ();
int i = npoints - 1;
int minx = xpoints[i];
int maxx = minx;
@@ -280,25 +294,11 @@ public class Polygon implements Shape, Serializable
else if (y > maxy)
maxy = y;
}
bounds = new Rectangle(minx, maxy, maxx - minx, maxy - miny);
bounds = new Rectangle (minx, maxy, maxx - minx, maxy - miny);
}
return bounds;
}
/**
* Returns the bounding box of this polygon. This is the smallest
* rectangle with sides parallel to the X axis that will contain this
* polygon.
*
* @return the bounding box for this polygon
* @see #getBounds2D()
* @deprecated use {@link #getBounds()} instead
*/
public Rectangle getBoundingBox()
{
return getBounds();
}
/**
* Tests whether or not the specified point is inside this polygon.
*