- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How can I set an EtchedBorder from BorderFactory class to a component in Java?
Set an EtchedBorder from BorderFactory class −
EtchedBorder etchedBorder = (EtchedBorder)BorderFactory.createEtchedBorder();
Now, set it for a component −
JButton button = new JButton("Etched Border"); button.setBorder(etchedBorder);
The following is an example to set an EtchedBorder from BorderFactory class to a component −
Example
package my; import java.awt.BorderLayout; import java.awt.Container; import javax.swing.BorderFactory; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.border.Border; import javax.swing.border.EtchedBorder; public class SwingDemo { public static void main(String args[]) { JFrame frame = new JFrame("Demo"); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Border raisedBorder = new EtchedBorder(EtchedBorder.RAISED); EtchedBorder etchedBorder = (EtchedBorder)BorderFactory.createEtchedBorder(); JButton raisedButton = new JButton("Raised Border"); raisedButton.setBorder(raisedBorder); JButton button = new JButton("Etched Border"); button.setBorder(etchedBorder); Container contentPane = frame.getContentPane(); contentPane.add(raisedButton,BorderLayout.NORTH); contentPane.add(button,BorderLayout.EAST); frame.setSize(600, 300); frame.setVisible(true); } }
Output
- Related Articles
- How to create and set an Empty Border from BorderFactory class in Java?
- How to create etched border for a component using BorderFactory class in Java?
- How to set a MatteBorder from BorderFactory in Java?
- How to create a LineBorder with BorderFactory class in Java?
- How to set Raised and Lowered EtchedBorder for components in Java?
- Create empty border with BorderFactory class in Java?
- How to set vertical alignment for a component in Java?
- How can I set a table in a JPanel in Java?
- How to set Parent State from Children Component in ReactJS?
- How can I set scrollbars to never appear in Java?
- How can we implement different borders using the BorderFactory in Java?\n
- How to create an object from class in Java?
- How do I pass an event handler to a component in ReactJS?
- How can I set a Border for an ImageView in Android?
- How I can create Python class from JSON object?

Advertisements