Checks whether the given variable name is reserved by this class. @param name the variable name to check @return true if the name is reserved
(String name)
| 266 | * @return true if the name is reserved |
| 267 | */ |
| 268 | protected boolean isNameReserved(String name) { |
| 269 | return name.startsWith(className + "."); |
| 270 | } |
| 271 | |
| 272 | |
| 273 | /** |
no test coverage detected