Component.java (toString): Implemented.

* java/awt/Component.java (toString): Implemented.
	* java/awt/Container.java (addImpl): Remove FIXME. Only call
	dispatchEvent() to dispatch the event.
	(removeImpl): Ditto.

From-SVN: r35363
This commit is contained in:
Bryce McKinlay 2000-07-31 04:11:49 +00:00 committed by Bryce McKinlay
parent b708c42c7a
commit aa18e0c184
3 changed files with 8 additions and 9 deletions

View file

@ -1283,7 +1283,7 @@ public abstract class Component implements ImageObserver, MenuContainer,
public String toString()
{
return paramString();
return this.getClass().getName() + "[" + paramString() + "]";
}
public void list()