Returns the count of PCClass objects in this ClassFacet for the Player Character represented by the given CharID. @param id The CharID representing the Player Character for which the count of PCClass objects should be returned @return The count of PCClass objects in this Class
(CharID id)
| 255 | * Character represented by the given CharID |
| 256 | */ |
| 257 | @Override |
| 258 | public int getCount(CharID id) |
| 259 | { |
| 260 | ClassInfo info = getClassInfo(id); |
| 261 | if (info == null) |
| 262 | { |
| 263 | return 0; |
| 264 | } |
| 265 | return info.classCount(); |
| 266 | } |
| 267 | |
| 268 | /** |
| 269 | * Returns true if this ClassFacet does not contain any PCClass objects for |
nothing calls this directly
no test coverage detected