(String propertyName, Object value)
| 4023 | } |
| 4024 | |
| 4025 | void setUIProperty(String propertyName, Object value) { |
| 4026 | if (propertyName == "rowHeight") { |
| 4027 | if (!rowHeightSet) { |
| 4028 | setRowHeight(((Number)value).intValue()); |
| 4029 | rowHeightSet = false; |
| 4030 | } |
| 4031 | } else if (propertyName == "scrollsOnExpand") { |
| 4032 | if (!scrollsOnExpandSet) { |
| 4033 | setScrollsOnExpand(((Boolean)value).booleanValue()); |
| 4034 | scrollsOnExpandSet = false; |
| 4035 | } |
| 4036 | } else if (propertyName == "showsRootHandles") { |
| 4037 | if (!showsRootHandlesSet) { |
| 4038 | setShowsRootHandles(((Boolean)value).booleanValue()); |
| 4039 | showsRootHandlesSet = false; |
| 4040 | } |
| 4041 | } else { |
| 4042 | super.setUIProperty(propertyName, value); |
| 4043 | } |
| 4044 | } |
| 4045 | |
| 4046 | |
| 4047 | /** |
nothing calls this directly
no test coverage detected