| 25 | import pcgen.cdom.enumeration.StringKey; |
| 26 | |
| 27 | public final class PCStat extends PObject |
| 28 | implements NonInteractive, SortKeyRequired, VarScoped |
| 29 | { |
| 30 | /* |
| 31 | * This is what the UI displays for the CHOOSE:PCSTAT. |
| 32 | */ |
| 33 | @Override |
| 34 | public String toString() |
| 35 | { |
| 36 | return getKeyName(); |
| 37 | } |
| 38 | |
| 39 | @Override |
| 40 | public Optional<String> getLocalScopeName() |
| 41 | { |
| 42 | return Optional.of("PC.STAT"); |
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public String getSortKey() |
| 47 | { |
| 48 | return get(StringKey.SORT_KEY); |
| 49 | } |
| 50 | } |
nothing calls this directly
no outgoing calls
no test coverage detected