public class ButtonFactory extends ResourceManager
Button.text = text Button.icon = icon_name Button.mnemonic = mnemonic Button.action = action_name Button.selected = true | false Button.tooltip = tool tip text where text, icon_name and action_name are strings mnemonic is a character
bundle
Constructor and Description |
---|
ButtonFactory(ResourceBundle rb,
ActionMap am)
Creates a new button factory
|
Modifier and Type | Method and Description |
---|---|
JButton |
createJButton(String name)
Creates and returns a new swing button
|
JCheckBox |
createJCheckBox(String name)
Creates and returns a new swing check box
|
JRadioButton |
createJRadioButton(String name)
Creates and returns a new swing radio button
|
JButton |
createJToolbarButton(String name)
Creates and returns a new swing button initialised
to be used as a toolbar button
|
JToggleButton |
createJToolbarToggleButton(String name)
Creates and returns a new swing button initialised
to be used as a toolbar toggle button
|
getBoolean, getCharacter, getInteger, getString, getStringList, getStringList, getStringList
public ButtonFactory(ResourceBundle rb, ActionMap am)
rb
- the resource bundle that contains the buttons
description.am
- the actions to bind to the buttonpublic JButton createJButton(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the button in the resource bundleMissingResourceException
- if key is not the name of a button.
It is not thrown if the mnemonic and the action keys are missingResourceFormatException
- if the mnemonic is not a single
characterMissingListenerException
- if the button action is not found in
the action mappublic JButton createJToolbarButton(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the button in the resource bundleMissingResourceException
- if key is not the name of a button.
It is not thrown if the mnemonic and the action keys are missingResourceFormatException
- if the mnemonic is not a single
characterMissingListenerException
- if the button action is not found in
the action mappublic JToggleButton createJToolbarToggleButton(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the button in the resource bundleMissingResourceException
- if key is not the name of a button.
It is not thrown if the mnemonic and the action keys are missingResourceFormatException
- if the mnemonic is not a single
characterMissingListenerException
- if the button action is not found in
the action mappublic JRadioButton createJRadioButton(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the button in the resource bundleMissingResourceException
- if key is not the name of a button.
It is not thrown if the mnemonic and the action keys are
missing.ResourceFormatException
- if the mnemonic is not a single
character.MissingListenerException
- if the button action is not found in
the action map.public JCheckBox createJCheckBox(String name) throws MissingResourceException, ResourceFormatException, MissingListenerException
name
- the name of the button in the resource bundleMissingResourceException
- if key is not the name of a button.
It is not thrown if the mnemonic and the action keys are missingResourceFormatException
- if the mnemonic is not a single
character.MissingListenerException
- if the button action is not found in
the action map.Copyright © 2000–2023 Apache Software Foundation. All rights reserved.