FileDialog.java: Import java.io.Serializable explicitly.
2004-05-05 Michael Koch <konqueror@gmx.de> * java/awt/FileDialog.java: Import java.io.Serializable explicitly. From-SVN: r81507
This commit is contained in:
parent
f32c742c5f
commit
e843041826
2 changed files with 6 additions and 1 deletions
|
@ -41,6 +41,7 @@ package java.awt;
|
|||
import java.awt.peer.FileDialogPeer;
|
||||
import java.awt.peer.DialogPeer;
|
||||
import java.io.FilenameFilter;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* This class implements a file selection dialog box widget.
|
||||
|
@ -48,7 +49,7 @@ import java.io.FilenameFilter;
|
|||
* @author Aaron M. Renn (arenn@urbanophile.com)
|
||||
* @author Tom Tromey <tromey@redhat.com>
|
||||
*/
|
||||
public class FileDialog extends Dialog implements java.io.Serializable
|
||||
public class FileDialog extends Dialog implements Serializable
|
||||
{
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue