(StringBuilder buffer)
| 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 | { |
no test coverage detected