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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJScrollPane.java196 protected int horizontalScrollBarPolicy = HORIZONTAL_SCROLLBAR_AS_NEEDED; field in class:JScrollPane
518 * @return the <code>horizontalScrollBarPolicy</code> property
522 return horizontalScrollBarPolicy;
554 throw new IllegalArgumentException("invalid horizontalScrollBarPolicy");
556 int old = horizontalScrollBarPolicy;
557 horizontalScrollBarPolicy = policy;
558 firePropertyChange("horizontalScrollBarPolicy", old, policy);
1369 if (horizontalScrollBarPolicy == HORIZONTAL_SCROLLBAR_AS_NEEDED) {
1371 } else if (horizontalScrollBarPolicy == HORIZONTAL_SCROLLBAR_NEVER) {
1373 } else if (horizontalScrollBarPolicy
[all...]

Completed in 40 milliseconds