• Home
  • Java Tutorial
  • Language
  • Data Type
  • Operators
  • Statement Control
  • Class Definition
  • Development
  • Reflection
  • Regular Expressions
  • Collections
  • Thread
  • File
  • Generics
  • I18N
  • Swing
  • Swing Event
  • 2D Graphics
  • SWT
  • SWT 2D Graphics
  • Network
  • Database
  • Hibernate
  • JPA
  • JSP
  • JSTL
  • Servlet
  • Web Services SOA
  • EJB3
  • Spring
  • PDF
  • Email
  • J2ME
  • J2EE Application
  • XML
  • Design Pattern
  • Log
  • Security
  • Apache Common
  • Ant
  • JUnit

BorderFactory « Swing « Java Tutorial






  1. Java Tutorial
  2. Swing
  3. BorderFactory
14.109.BorderFactory
14.109.1.Introducing BorderFactory
14.109.2.BorderFactory in action
14.109.3.Use BorderFactory to create borders
14.109.4.BorderFactory.createEmptyBorder
14.109.5.BorderFactory.createLineBorder: create line border
14.109.6.BorderFactory.createEtchedBorder: create Etched Border
14.109.7.BorderFactory.createEtchedBorder: LOWERED EtchedBorder
14.109.8.BorderFactory.createRaisedBevelBorder
14.109.9.BorderFactory.createLoweredBevelBorder








14.109.10.BorderFactory.createEmptyBorder(10, 10, 10, 10)
14.109.11.BorderFactory.createTitledBorder('Title Border')
14.109.12.BorderFactory.createTitledBorder(BorderFactory.createLineBorder(Color.BLUE), "Title Line Border with color")
14.109.13.BorderFactory.createTitledBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED), "Title Lowered Etched Border")
14.109.14.BorderFactory.createMatteBorder(2, 5, 2, 5, Color.BLUE)
14.109.15.BorderFactory.createCompoundBorder(BorderFactory.createRaisedBevelBorder(), BorderFactory.createLoweredBevelBorder())
14.109.16.BorderFactory.createCompoundBorder(BorderFactory.createLineBorder(Color.red), BorderFactory.createMatteBorder(-1, -1, -1, -1, icon))

java2s.com  | © Demo Source and Support. All rights reserved.