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

Class PCStat

code/src/java/pcgen/core/PCStat.java:27–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25import pcgen.cdom.enumeration.StringKey;
26
27public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected