MCPcopy Create free account
hub / github.com/PCGen/pcgen / getPluralName

Method getPluralName

code/src/java/pcgen/core/AbilityCategory.java:310–325  ·  view source on GitHub ↗

Returns an internationalized plural version of the category name. @return The pluralized name

()

Source from the content-addressed store, hash-verified

308 * @return The pluralized name
309 */
310 public String getPluralName()
311 {
312 String name = pluralName;
313 if (name == null)
314 {
315 name = displayName;
316 }
317 if (name.startsWith("in_"))
318 {
319 return LanguageBundle.getString(name);
320 }
321 else
322 {
323 return name;
324 }
325 }
326
327 public String getRawPluralName()
328 {

Callers 2

getDisplayLocationMethod · 0.95
testApplyMethod · 0.95

Calls 1

getStringMethod · 0.95

Tested by

no test coverage detected