Identify if this class has a cap on the number of levels it is possible to take. @return true if a cap on levels exists, false otherwise.
()
| 275 | * @return true if a cap on levels exists, false otherwise. |
| 276 | */ |
| 277 | public final boolean hasMaxLevel() |
| 278 | { |
| 279 | Integer ll = get(IntegerKey.LEVEL_LIMIT); |
| 280 | return ll != null && ll != Constants.NO_LEVEL_LIMIT; |
| 281 | } |
| 282 | |
| 283 | /* |
| 284 | * REFACTOR This is BAD that this is referring to PCLevelInfo - that gets |
no test coverage detected