Create a vertical JSeparator in Java
Description
The following code shows how to create a vertical JSeparator.
Example
// w w w . ja va2 s .co m
import javax.swing.JFrame;
import javax.swing.JSeparator;
public class Main {
public static void main(String[] a){
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new JSeparator(JSeparator.VERTICAL));
frame.setSize(300, 200);
frame.setVisible(true);
}
}
The code above generates the following result.
Home »
Java Tutorial »
Swing »
Java Tutorial »
Swing »