Package org.jboss.logging.processor.util
Class TranslationHelper
java.lang.Object
org.jboss.logging.processor.util.TranslationHelper
Utility class to work with translation filename.
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
Private constructor to disable instantiation. -
Method Summary
Modifier and TypeMethodDescriptionstatic String
getEnclosingTranslationClassName
(String translationClassName) Returns the enclosing translation class name for the given translation class name.static String
getEnclosingTranslationFileName
(File translationFile) Returns the enclosing translation file name for the given translation file name.static String
getTranslationClassNameSuffix
(String translationFileName) Get the class name suffix to be added to the generated class for the given translation file name.
-
Field Details
-
TRANSLATION_FILE_NAME_EXTENSION
- See Also:
-
-
Constructor Details
-
TranslationHelper
private TranslationHelper()Private constructor to disable instantiation.
-
-
Method Details
-
getTranslationClassNameSuffix
Get the class name suffix to be added to the generated class for the given translation file name.- Parameters:
translationFileName
- the translation file name- Returns:
- the class name suffix corresponding to the given translation filename
- Throws:
IllegalArgumentException
- if translationFileName is null or not valid
-
getEnclosingTranslationFileName
Returns the enclosing translation file name for the given translation file name. If the given translation file name is InterfaceName.i18n_locale the given translation file name is returned.- Parameters:
translationFile
- the translation file- Returns:
- the enclosing file name
- Throws:
IllegalArgumentException
- if translationFileName is null
-
getEnclosingTranslationClassName
Returns the enclosing translation class name for the given translation class name. If the given translation class name is the upper class name then the parameter class name is returned.- Parameters:
translationClassName
- the translation class name- Returns:
- the enclosing class name
- Throws:
IllegalArgumentException
- if translationClassName is null
-