Dialog.java (constructor): Accept null title as per spec.
* java/awt/Dialog.java (constructor): Accept null title as per spec.
* java/awt/FileDialog.java (constructor): Throw exception on invalid
argument as per spec.
From-SVN: r75444
This commit is contained in:
committed by
Fernando Nasser
parent
b7a9b4af03
commit
975fde59af
@@ -147,6 +147,11 @@ public
|
||||
FileDialog(Frame parent, String title, int mode)
|
||||
{
|
||||
super(parent, title, true);
|
||||
|
||||
if ((mode != LOAD) && (mode != SAVE))
|
||||
throw new IllegalArgumentException (
|
||||
"Mode argument must be either LOAD or SAVE");
|
||||
|
||||
setMode (mode);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user