()
| 122 | * PCClass for PCClassLevel creation (in the factory) |
| 123 | */ |
| 124 | public final String getAbbrev() |
| 125 | { |
| 126 | FactKey<String> fk = FactKey.valueOf("Abb"); |
| 127 | String abb = getResolved(fk); |
| 128 | if (abb == null) |
| 129 | { |
| 130 | String name = getDisplayName(); |
| 131 | abb = name.substring(0, Math.min(3, name.length())); |
| 132 | } |
| 133 | return abb; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Return the qualified key, usually used as the source in a |