MCPcopy Create free account
hub / github.com/OpenSourcePhysics/osp / setRowHeight

Method setRowHeight

unused/javax/swing/JTree.java:982–990  ·  view source on GitHub ↗

Sets the height of each cell, in pixels. If the specified value is less than or equal to zero the current cell renderer is queried for each row's height. This is a bound property. @param rowHeight the height of each cell, in pixels @beaninfo bound: true description: The height of each

(int rowHeight)

Source from the content-addressed store, hash-verified

980 * description: The height of each cell.
981 */
982 public void setRowHeight(int rowHeight)
983 {
984 int oldValue = this.rowHeight;
985
986 this.rowHeight = rowHeight;
987 rowHeightSet = true;
988 firePropertyChange(ROW_HEIGHT_PROPERTY, oldValue, this.rowHeight);
989 invalidate();
990 }
991
992 /**
993 * Returns the height of each row. If the returned value is less than

Callers 9

setUIPropertyMethod · 0.95
setFontMethod · 0.80
DiagnosticsForThreadsMethod · 0.80
setFontMethod · 0.80
setFontMethod · 0.80
createTreeMethod · 0.80
setFontMethod · 0.80
setFontMethod · 0.80
runMethod · 0.80

Calls 2

invalidateMethod · 0.80
firePropertyChangeMethod · 0.45

Tested by

no test coverage detected