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

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java92 private int layoutOrientation; field in class:BasicListUI
248 switch (layoutOrientation) {
294 int rowIncrement = (layoutOrientation == JList.HORIZONTAL_WRAP) ?
347 if (layoutOrientation == JList.HORIZONTAL_WRAP) {
365 if (layoutOrientation == JList.HORIZONTAL_WRAP) {
414 } else if (layoutOrientation == JList.VERTICAL_WRAP) {
589 if (layoutOrientation != JList.VERTICAL) {
871 layoutOrientation = list.getLayoutOrientation();
972 if (layoutOrientation == JList.HORIZONTAL_WRAP) {
1010 switch (layoutOrientation) {
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java331 private int layoutOrientation; field in class:JList
429 layoutOrientation = VERTICAL;
943 * @return the value of the {@code layoutOrientation} property
948 return layoutOrientation;
993 * @param layoutOrientation the new layout orientation, one of:
999 * @throws IllegalArgumentException if {@code layoutOrientation} isn't one of the
1010 public void setLayoutOrientation(int layoutOrientation) { argument
1011 int oldValue = this.layoutOrientation;
1012 switch (layoutOrientation) {
1016 this.layoutOrientation
[all...]

Completed in 37 milliseconds