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

Method appendStatLines

code/src/java/pcgen/io/PCGVer2Creator.java:2184–2195  ·  view source on GitHub ↗
(StringBuilder buffer)

Source from the content-addressed store, hash-verified

2182 * ###############################################################
2183 */
2184 private void appendStatLines(StringBuilder buffer)
2185 {
2186 for (PCStat aStat : charDisplay.getStatSet())
2187 {
2188 buffer.append(IOConstants.TAG_STAT).append(':');
2189 buffer.append(aStat.getKeyName());
2190 buffer.append('|');
2191 buffer.append(IOConstants.TAG_SCORE).append(':');
2192 buffer.append(charDisplay.getStat(aStat));
2193 buffer.append(IOConstants.LINE_SEP);
2194 }
2195 }
2196
2197 private void appendTabNameLine(StringBuilder buffer)
2198 {

Callers 1

createPCGStringMethod · 0.95

Calls 4

getKeyNameMethod · 0.65
getStatSetMethod · 0.45
appendMethod · 0.45
getStatMethod · 0.45

Tested by

no test coverage detected