Get the StringManager for a given class. The StringManager will be returned for the package in which the class is located. If a manager for that package already exists, it will be reused, else a new StringManager will be created and returned. @param clazz The class for which to retrieve the StringM
(Class<?> clazz)
| 184 | * @return The instance associated with the package of the provide class |
| 185 | */ |
| 186 | public static StringManager getManager(Class<?> clazz) { |
| 187 | return getManager(clazz.getPackage().getName()); |
| 188 | } |
| 189 | |
| 190 | |
| 191 | /** |
no test coverage detected