(changeRect:Rectangle = null)
| 269 | } |
| 270 | |
| 271 | public unlock(changeRect:Rectangle = null):void { |
| 272 | this._locked = false; |
| 273 | if (changeRect == null) { |
| 274 | this._updateBox(); |
| 275 | } else { |
| 276 | this._updateBox(changeRect); |
| 277 | } |
| 278 | } |
| 279 | |
| 280 | public getId():string { |
| 281 | return this._id; |
nothing calls this directly
no test coverage detected