Revision 2fc6f4c0
set monitor methods to protected in DescriptionAggregationBase
cdmlib-services/src/main/java/eu/etaxonomy/cdm/api/service/description/DescriptionAggregationBase.java | ||
---|---|---|
422 | 422 |
getMonitor().beginTask(name, totalWork); |
423 | 423 |
} |
424 | 424 |
|
425 |
public void worked(int work){
|
|
425 |
protected void worked(int work){
|
|
426 | 426 |
getMonitor().worked(work); |
427 | 427 |
} |
428 | 428 |
|
429 |
public void workedAndNewTask(int work, String newTask){
|
|
429 |
protected void workedAndNewTask(int work, String newTask){
|
|
430 | 430 |
getMonitor().worked(work); |
431 | 431 |
getMonitor().subTask(newTask); |
432 | 432 |
} |
433 | 433 |
|
434 |
public void subTask(String name){
|
|
434 |
protected void subTask(String name){
|
|
435 | 435 |
getMonitor().subTask(name); |
436 | 436 |
} |
437 | 437 |
|
438 |
public void done(){
|
|
438 |
protected void done(){
|
|
439 | 439 |
getMonitor().done(); |
440 | 440 |
} |
441 | 441 |
|
Also available in: Unified diff