Java javax.swing.border EtchedBorder fields, constructors, methods, implement or subclass

Example usage for Java javax.swing.border EtchedBorder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing.border EtchedBorder.

The text is from its open source code.

Field

intRAISED
Raised etched type.
intLOWERED
Lowered etched type.

Constructor

EtchedBorder(int etchType, Color highlight, Color shadow)
Creates an etched border with the specified etch-type, highlight and shadow colors.
EtchedBorder(int etchType)
Creates an etched border with the specified etch-type whose colors will be derived from the background color of the component passed into the paintBorder method.
EtchedBorder()
Creates a lowered etched border whose colors will be derived from the background color of the component passed into the paintBorder method.
EtchedBorder(Color highlight, Color shadow)
Creates a lowered etched border with the specified highlight and shadow colors.