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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DJSplitPane.java259 * @param newOrientation <code>JSplitPane.HORIZONTAL_SPLIT</code> or
265 public JSplitPane(int newOrientation) { argument
266 this(newOrientation,
275 * @param newOrientation <code>JSplitPane.HORIZONTAL_SPLIT</code> or
283 public JSplitPane(int newOrientation, argument
285 this(newOrientation, newContinuousLayout, null, null);
293 * @param newOrientation <code>JSplitPane.HORIZONTAL_SPLIT</code> or
306 public JSplitPane(int newOrientation, argument
309 this(newOrientation,
320 * @param newOrientation <cod
336 JSplitPane(int newOrientation, boolean newContinuousLayout, Component newLeftComponent, Component newRightComponent) argument
[all...]
H A DJProgressBar.java386 * Sets the progress bar's orientation to <code>newOrientation</code>,
391 * @param newOrientation <code>HORIZONTAL</code> or <code>VERTICAL</code>
392 * @exception IllegalArgumentException if <code>newOrientation</code>
402 public void setOrientation(int newOrientation) { argument
403 if (orientation != newOrientation) {
404 switch (newOrientation) {
408 orientation = newOrientation;
409 firePropertyChange("orientation", oldOrientation, newOrientation);
422 throw new IllegalArgumentException(newOrientation +

Completed in 151 milliseconds