-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
6
-
generic
-
generic
TableColumn.setMaxWidth(int maxWidth) current spec is following:
Sets the TableColumn's maximum width to maxWidth; also adjusts the width and preferred width if they are greater than this value.
It doesn't specify the behavior of this method when minWidth is greater than new maxWidth value. By current specification we should set maxWidth to this new value and do not change minWidth. It leads to the contradiction when maxWidth is smaller than minWidth.
###@###.### 2005-1-13 12:00:46 GMT
The same problem arises for setMinWidth(int minWidth) when minWidth > maxWidth. Specification don't clarify the behavior of method. Moreover current implementation of this method don't compare minWidth and maxWidth (in setmaxWidth such comparison occurs (see comments)). And it's possible to set minWidth > maxWidth.
See also 6217104.
###@###.### 2005-1-13 12:32:19 GMT
Sets the TableColumn's maximum width to maxWidth; also adjusts the width and preferred width if they are greater than this value.
It doesn't specify the behavior of this method when minWidth is greater than new maxWidth value. By current specification we should set maxWidth to this new value and do not change minWidth. It leads to the contradiction when maxWidth is smaller than minWidth.
###@###.### 2005-1-13 12:00:46 GMT
The same problem arises for setMinWidth(int minWidth) when minWidth > maxWidth. Specification don't clarify the behavior of method. Moreover current implementation of this method don't compare minWidth and maxWidth (in setmaxWidth such comparison occurs (see comments)). And it's possible to set minWidth > maxWidth.
See also 6217104.
###@###.### 2005-1-13 12:32:19 GMT
- duplicates
-
JDK-6232392 TableColumn needs to be more careful about width properties
-
- Resolved
-