package org.hwo.thread; public class ThreadedOperationUpdateArgs { private Integer progressOperation; private Integer progressStep; private String stepLabel; private String statusText; private String titleText; public ThreadedOperationUpdateArgs() { } public ThreadedOperationUpdateArgs(Integer progressStep) { this.progressStep = progressStep; } public ThreadedOperationUpdateArgs(Integer progressOperation,Integer progressStep) { this.progressOperation = progressOperation; this.progressStep = progressStep; } public ThreadedOperationUpdateArgs(Integer progressOperation,Integer progressStep,String statusText) { this.progressOperation = progressOperation; this.progressStep = progressStep; this.statusText = statusText; } public ThreadedOperationUpdateArgs(Integer progressOperation,Integer progressStep,String statusText,String stepLabel) { this.progressOperation = progressOperation; this.progressStep = progressStep; this.statusText = statusText; this.stepLabel = stepLabel; } public String getStepLabel() { return stepLabel; } public void setStepLabel(String stepLabel) { this.stepLabel = stepLabel; } public Integer getProgressStep() { return progressStep; } public void setProgressStep(Integer progressStep) { this.progressStep = progressStep; } public Integer getProgressOperation() { return progressOperation; } public void setProgressOperation(Integer progressOperation) { this.progressOperation = progressOperation; } public String getStatusText() { return statusText; } public void setStatusText(String statusText) { this.statusText = statusText; } public String getTitleText() { return titleText; } public void setTitleText(String titleText) { this.titleText = titleText; } }