MenuComponent.java: Import java.io.Serialization.

2003-12-04  Michael Koch  <konqueror@gmx.de>

	* java/awt/MenuComponent.java: Import java.io.Serialization.
	* java/awt/MenuItem.java: Likewise.
	* java/awt/TextComponent.java: Likewise.
	* java/awt/image/ImagingOpException.java
	(serialVersionUID): Fixed.

From-SVN: r74286
This commit is contained in:
Michael Koch 2003-12-04 19:31:01 +00:00 committed by Michael Koch
parent 6938ec6c89
commit 02bec8cb64
5 changed files with 22 additions and 9 deletions

View file

@ -1,5 +1,5 @@
/* MenuItem.java -- An item in a menu
Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@ -41,6 +41,7 @@ package java.awt;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.peer.MenuItemPeer;
import java.io.Serializable;
import java.lang.reflect.Array;
import java.util.EventListener;
@ -49,7 +50,8 @@ import java.util.EventListener;
*
* @author Aaron M. Renn (arenn@urbanophile.com)
*/
public class MenuItem extends MenuComponent implements java.io.Serializable
public class MenuItem extends MenuComponent
implements Serializable
{
// FIXME: The enabled event mask is not used at this time.