The JSeparator class provides a horizontal or vertical dividing line or empty space : JSeparator « Swing « Java Tutorial






The JSeparator class provides a horizontal or vertical dividing line or empty space
import javax.swing.JFrame;
import javax.swing.JSeparator;

public class JSeparatorVERTICALHORI {

  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);
  }


}








14.29.JSeparator
14.29.1.JSeparator
14.29.2.Add Separator to MenuAdd Separator to Menu
14.29.3.The JSeparator class provides a horizontal or vertical dividing line or empty spaceThe JSeparator class provides a horizontal or vertical dividing line or empty space
14.29.4.Customizing JSeparator Look and Feel