@param name the DDF name to set
(String name)
| 266 | * @param name the DDF name to set |
| 267 | */ |
| 268 | @Override |
| 269 | public void setName(String name) throws DDFException { |
| 270 | if(name != null) validateName(name); |
| 271 | |
| 272 | this.mName = name; |
| 273 | } |
| 274 | |
| 275 | //Ensure name is unique |
| 276 | //Also only allow alphanumberic and dash "-" and underscore "_" |
nothing calls this directly
no test coverage detected