-
Bug
-
Resolution: Fixed
-
P3
-
1.2.0
-
1.2.2
-
sparc
-
solaris_2.5
Name: sdC67446 Date: 09/10/98
The method DataFlavor.isFlavorJavaFileListType() returns false if
instance's representationClass is subclass/subinterface of
java.util.List. True should be returned.
The method returns true if representationClass == java.util.List only.
The doc says:
--------------------------------------------------
public boolean isFlavorJavaFileListType()
Returns:
if flavor specified represents a List of File objects
The test demonstrating the bug:
-----------------Test.java------------------------
import java.awt.datatransfer.*;
public class Test {
public static void main(String[] args) {
DataFlavor df = new DataFlavor("application", "x-java-file-list",
null, java.util.List.class, "");
System.out.println(df.isFlavorJavaFileListType());
df = new DataFlavor("application", "x-java-file-list",
null, java.util.ArrayList.class, "");
System.out.println(df.isFlavorJavaFileListType());
}
}
---------Output from the test---------------------
true
false
--------------------------------------------------
======================================================================