Top
Interstage Studio J Business Kit GUI Library User's Guide
FUJITSU Software

3.21 Panel Bean

The panel Bean has the following information and Customizer functions.

See

"Package Guide"- JFPanel

Property information

Name

Type

Reference

Setting

Explanation

autoFocus

boolean

Y

Y

Set focus function valid/invalid

background

java.awt
Color

Y

Y

Background color

componentOrientation

java.awt
ComponentOrientation

Y

Y

The orientation of the string. It depends on the language

enabled

boolean

Y

Y

Whether enabled

firstFocusComponent

java.awt
Component

Y

Y

Component focused first

focusTraversalKeysEnabled

boolean

Y

Y

Whether the focus traversal key is available

focusable

boolean

Y

Y

Whether the focus can be set

font

java.awt
Font

Y

Y

Font

foreground

java.awt
Color

Y

Y

Foreground color

ignoreRepaint

boolean

Y

Y

Whether the paint message of the operating system should be ignored

layout

java.awt
LayoutManager

Y

Y

Layout manager

locale

java.util
Locale

Y

Y

Locale information

name

java.lang
String

Y

Y

Name

visible

boolean

Y

Y

Whether visible

wrapAround

boolean

Y

Y

Whether to set wraparound of the focus movement

Event information

Name

Listener

Addition/removal

Method

Explanation

component

java.awt.event
ComponentListener

addComponentListener
removeComponentListener

componentResized

Is issued when the component status changes.

componentMoved

componentShown

componentHidden

container

java.awt.event
ContainerListener

addContainerListener
removeContainerListener

componentAdded

Is issued when the container status changes.

componentRemoved

focus

java.awt.event
FocusListener

addFocusListener
removeFocusListener

focusGained

Is issued when the focus moves.

focusLost

inputMethod

java.awt.event
InputMethodListener

addInputMethodListener
removeInputMethodListener

caretPositionChanged

Is issued when the input method status changes.

inputMethodTextChanged

key

java.awt.event
KeyListener

addKeyListener
removeKeyListener

keyTyped

Is issued by key operation.

keyPressed

keyReleased

mouse

java.awt.event
MouseListener

addMouseListener
removeMouseListener

mouseClicked

Is issued by mouse operation.

mousePressed

mouseReleased

mouseEntered

mouseExited

mouseMotion

java.awt.event
MouseMotionListener

addMouseMotionListener
removeMouseMotionListener

mouseDragged

Is issued when the mouse moves.

mouseMoved

mouseWheel

java.awt.event
MouseWheelListener

addMouseWheelListener
removeMouseWheelListener

mouseWheelMoved

Is issued by mouse wheel operation.

propertyChange

java.beans
PropertyChangeListener

addPropertyChangeListener
removePropertyChangeListener

propertyChange

Is issued when the property changes.

Method information

Name

Parameters

Explanation

add

java.awt
Component

Adds the component.

add

java.awt
Component

Adds the component.

int

add

java.awt
Component

Adds the component.

java.lang
Object

add

java.awt
Component

Adds the component.

java.lang
Object

int

drawViewImage

java.awt
Graphics

Draws the panel screen image.

drawViewImage

java.awt
Graphics

Draws the panel screen image in a specified size.

java.awt
Rectangle

remove

int

Deletes the component.

remove

java.awt
Component

Deletes the component.

removeAll

Deletes all components.

removeNotify

Notifies a component that it has been removed from the container. If a peer exists, it is destroyed.

requestFocus

Requests an input focus.

transferFocus

Moves the focus to the next component.

Customizer