Searched refs:visibleRowCount (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java318 private int visibleRowCount = 8; field in class:JList
881 * Returns the value of the {@code visibleRowCount} property. See the
885 * @return the value of the {@code visibleRowCount} property.
889 return visibleRowCount;
893 * Sets the {@code visibleRowCount} property, which has different meanings
916 * @param visibleRowCount an integer specifying the preferred number of
929 public void setVisibleRowCount(int visibleRowCount) { argument
930 int oldValue = this.visibleRowCount;
931 this.visibleRowCount = Math.max(0, visibleRowCount);
[all...]
H A DJTree.java252 protected int visibleRowCount; field in class:JTree
476 /** Bound property name for <code>visibleRowCount</code>. */
477 public final static String VISIBLE_ROW_COUNT_PROPERTY = "visibleRowCount";
660 visibleRowCount = 20;
2950 int oldCount = visibleRowCount;
2952 visibleRowCount = newCount;
2954 visibleRowCount);
2967 return visibleRowCount;
4058 ",visibleRowCount=" + visibleRowCount;
[all...]

Completed in 35 milliseconds