Class MnemonicUtil
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final char
Constant for the closing parenthesis (=right parenthesis) ')'.static final char
Constant for the mnemonic indicator '&'.static final char
Constant for the opening parenthesis (=left parenthesis) '('. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic String
addMnemonicToLabel
(String label, char mnemonic) Returns label text with mnemonic character enclosed in parenthesis.static String
extractLabelTextWithMnemonic
(String labelAndMnemonic) Extracts label text by removing non-displayable mnemonic indicator (conventionally ampersand (' ')) from label text and mnemonic resource.static String
extractLabelTextWithoutMnemonic
(String labelAndMnemonic) Extracts label text by removing mnemonic characters (e.g., "(F)" and "(&F)") from label text resource containing mnemonic.static int
getMnemonicCharacter
(String labelAndMnemonic) Gets the keyboard mnemonic from label and mnemonic text.static int
getMnemonicIndex
(String labelAndMnemonic) Gets the index of the mnemonic from label and mnemonic text.static MnemonicKeyValidator
static boolean
isValidMnemonicKey
(int key) Returns true if key is an valid mnemonic key based on mnemonic key validator associated with thid class.static void
setLabelAndTextFor
(JLabel label, Component labelFor, LocaleMessage labelText) static void
setMnemonicKeyValidator
(MnemonicKeyValidator mnemonicKeyValidator) static void
setTextAndMnemonic
(AbstractButton button, LocaleMessage buttonText) Set label text and keyboard mnemonic of specified this component
-
Field Details
-
MNEMONIC_INDICATOR
public static final char MNEMONIC_INDICATORConstant for the mnemonic indicator '&'.- See Also:
-
OPENING_PARENTHESIS
public static final char OPENING_PARENTHESISConstant for the opening parenthesis (=left parenthesis) '('.- See Also:
-
CLOSING_PARENTHESIS
public static final char CLOSING_PARENTHESISConstant for the closing parenthesis (=right parenthesis) ')'.- See Also:
-
-
Constructor Details
-
MnemonicUtil
public MnemonicUtil()
-
-
Method Details
-
getMnemonicCharacter
Gets the keyboard mnemonic from label and mnemonic text. Mnemonic character is indicated by MNEMONIC_INDICATOR. If label and mnemonic text contains two or more mnemonic indicator, second and after appearance of mnemonic indicators are ignored.For example,
From To &File → F ファイル(&F) → F - Parameters:
labelAndMnemonic
- label text containing mnemonic- Returns:
- an int specifying the accelerator key. 0, if no mnemonic characterr in this string
- Throws:
NullPointerException
- if labelAndMnemonic is null
-
getMnemonicIndex
Gets the index of the mnemonic from label and mnemonic text.
For example,
From To &File → F ファイル(&F) → F - Parameters:
labelAndMnemonic
- label text containing mnemonic- Returns:
- an int specifying the accelerator key index. 0, if no mnemonic characterr in this string
- Throws:
NullPointerException
- if labelAndMnemonic is null
-
extractLabelTextWithMnemonic
public static String extractLabelTextWithMnemonic(String labelAndMnemonic) throws NullPointerException Extracts label text by removing non-displayable mnemonic indicator (conventionally ampersand (' ')) from label text and mnemonic resource. If label and mnemonic text contains two or more mnemonic indicator, second and after appearance of mnemonic indicators are ignored.For example,
From To &File → File ファイル(&F) → ファイル(F) - Parameters:
labelAndMnemonic
- label text containing mnemonic- Returns:
- label text without mnemonic
- Throws:
NullPointerException
- if labelAndMnemonic is null
-
addMnemonicToLabel
Returns label text with mnemonic character enclosed in parenthesis. If the label does not contain mnemonic character (ignoring case), mnemonic character is enclosed in parenthesis and added end of menu label. If mnemonic is not a valid character for mnemonic key, only label will be returned.When you need menu label for CJK translation (or translated menu label does not contain mnemonic character), you have to add mnemonic label after menu label text. The mnemonic character should be enclosed in parenthesis and added end of menu label for CJK translation.
For example,
From To F + ファイル → ファイル(F) - Parameters:
label
-mnemonic
-- Returns:
- label text with mnemonic
- Throws:
NullPointerException
- if labelAndMnemonic is null
-
extractLabelTextWithoutMnemonic
public static String extractLabelTextWithoutMnemonic(String labelAndMnemonic) throws NullPointerException Extracts label text by removing mnemonic characters (e.g., "(F)" and "(&F)") from label text resource containing mnemonic.- strip mnemonic indicator from menu label text and mnemonic resource
- strip mnemonic label (from opening parenthesis to closing parenthesis that containing mnemonic indicator and mnemonic character)for CJK translation
- strip mnemonic label (from opening parenthesis to closing parenthesis that containing mnemonic character) without mnemonic indicator for CJK translation
For example,
From To &File → File ファイル(&F) → ファイル ファイル(F) → ファイル Conventionally, mnemonic indicator is ampersand ('&') and mnemonic character for CJK translation is enclosed by OPENING_PARENTHESIS ('(') and CLOSING_PARENTHESIS (')').
If label and mnemonic text contains two or more mnemonic indicator, second and after appearance of mnemonic indicators are ignored.
If parenthesis are not enclosing only mnemonic character, parenthesis are not removed.
If mnemonic indicator is not found in CJK translation resource, last occurrence of the parenthesis and enclosed mnemonic character will be removed.- Parameters:
labelAndMnemonic
-- Returns:
- label text without mnemonic
- Throws:
NullPointerException
- if labelAndMnemonic is null
-
setTextAndMnemonic
Set label text and keyboard mnemonic of specified this component- Parameters:
button
- component to set label text and mnemonicbuttonText
- label text with mnemonic character
-
setLabelAndTextFor
-
isValidMnemonicKey
public static boolean isValidMnemonicKey(int key) Returns true if key is an valid mnemonic key based on mnemonic key validator associated with thid class.- Parameters:
key
- mnemonic key- Returns:
- true if key is valid mnemonic key, else false
-
setMnemonicKeyValidator
-
getMnemonicKeyValidator
-