Java Swing Tutorial - Java BorderFactory .createSoftBevelBorder (int type, Color highlightOuter, Color highlightInner, Color shadowOuter, Color shadowInner)








Syntax

BorderFactory.createSoftBevelBorder(int type, Color highlightOuter, Color highlightInner, Color shadowOuter, Color shadowInner) has the following syntax.

public static Border createSoftBevelBorder(int type,    Color highlightOuter,    Color highlightInner,    Color shadowOuter,    Color shadowInner)

Example

In the following code shows how to use BorderFactory.createSoftBevelBorder(int type, Color highlightOuter, Color highlightInner, Color shadowOuter, Color shadowInner) method.

import java.awt.Color;
import java.awt.FlowLayout;
/*ww  w  .j  av  a  2  s.  c o  m*/
import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.border.BevelBorder;

public class Main extends JFrame {
  public Main(String name) {
    getContentPane().setLayout(new FlowLayout());
    JLabel labelTwo = new JLabel("www.java2s.com");
    labelTwo.setBorder(BorderFactory.createSoftBevelBorder(BevelBorder.RAISED,Color.red,Color.black));
    
    add(labelTwo);
    
    
  }

  public static void main(String[] args) {
    JFrame frame = new Main("javax.swing.JButton");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);

  }
}