| | 325 | * Add a listener to get events from the DownloadSelection window |
| | 326 | * |
| | 327 | * @param selection The DownloadSelection object to send the Bounds to |
| | 328 | * @return See {@link List#add} |
| | 329 | * @since xxx |
| | 330 | */ |
| | 331 | public boolean addDownloadAreaListener(DownloadSelection selection) { |
| | 332 | return this.downloadSelections.add(selection); |
| | 333 | } |
| | 334 | |
| | 335 | /** |
| | 336 | * Remove a listener that was getting events from the DownloadSelection window |
| | 337 | * |
| | 338 | * @param selection The DownloadSelection object to not send the Bounds to |
| | 339 | * @return See {@link List#remove} |
| | 340 | * @since xxx |
| | 341 | */ |
| | 342 | public boolean removeDownloadAreaListener(DownloadSelection selection) { |
| | 343 | return this.downloadSelections.remove(selection); |
| | 344 | } |
| | 345 | |
| | 346 | /** |