-
Bug
-
Resolution: Fixed
-
P3
-
6
-
b35
-
generic
-
generic
-
Verified
According to the Specification for java.awt.BorderLayput.getConstraints(Component comp), method should return null.
---------------------------
Returns:
the constraint for the specified component, or null if component is null or is not present in this layout
---------------------------
but actually it returns BorderLayout.CENTER
------- Test.java --------------------------------
import java.awt.BorderLayout;
public class Test {
public static void main(String[] argv) {
System.out.println((new BorderLayout()).getConstraints(null));
}
}
---------------------------------------------------
###@###.### 2005-03-17 13:57:19 GMT
---------------------------
Returns:
the constraint for the specified component, or null if component is null or is not present in this layout
---------------------------
but actually it returns BorderLayout.CENTER
------- Test.java --------------------------------
import java.awt.BorderLayout;
public class Test {
public static void main(String[] argv) {
System.out.println((new BorderLayout()).getConstraints(null));
}
}
---------------------------------------------------
###@###.### 2005-03-17 13:57:19 GMT