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:
committed by
Thomas Fitzsimmons
parent
5a98fa7bdb
commit
b6d3cb37ef
@@ -52,12 +52,12 @@ public interface LayoutManager2 extends LayoutManager
|
||||
{
|
||||
/**
|
||||
* Adds the specified component to the layout, with the specified
|
||||
* constraint object.
|
||||
* constraints object.
|
||||
*
|
||||
* @param component the component to add
|
||||
* @param constraint the constraint to satisfy
|
||||
* @param constraints the constraints to satisfy
|
||||
*/
|
||||
void addLayoutComponent(Component component, Object contraint);
|
||||
void addLayoutComponent(Component component, Object contraints);
|
||||
|
||||
/**
|
||||
* Determines the maximum size of the specified target container.
|
||||
|
||||
Reference in New Issue
Block a user