Java JSeparator.setOrientation(int orientation)

Syntax

JSeparator.setOrientation(int orientation) has the following syntax.

public void setOrientation(int orientation)

Example

In the following code shows how to use JSeparator.setOrientation(int orientation) method.


import javax.swing.JFrame;
import javax.swing.JSeparator;
//from w ww .  j  a v  a 2 s. c om
public class Main {

  public static void main(String[] a){
    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JSeparator sep = new JSeparator(JSeparator.VERTICAL);
    sep.setOrientation(JSeparator.VERTICAL);
    frame.add(sep);

    frame.setSize(300, 200);
    frame.setVisible(true);
  }


}