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

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

Introduction

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

The text is from its open source code.

Field

intRAISED
Raised bevel type.
intLOWERED
Lowered bevel type.

Constructor

BevelBorder(int bevelType, Color highlightOuterColor, Color highlightInnerColor, Color shadowOuterColor, Color shadowInnerColor)
Creates a bevel border with the specified type, highlight and shadow colors.
BevelBorder(int bevelType)
Creates a bevel border with the specified type and whose colors will be derived from the background color of the component passed into the paintBorder method.
BevelBorder(int bevelType, Color highlight, Color shadow)
Creates a bevel border with the specified type, highlight and shadow colors.