Class ProgressDialog.ProgressTask
java.lang.Object
com.inductiveautomation.ignition.client.util.gui.ProgressDialog.ProgressTask
- All Implemented Interfaces:
- ProgressListener
- Direct Known Subclasses:
- ProjectOpenTask,- PullTask,- PushTask
- Enclosing class:
- ProgressDialog
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected booleanbooleanprotected abstract Objectrun()voidsetIndeterminate(boolean bool) Allows the object performing the action to indicate that it won't be able to report back progress information.voidSets some sort of note or information about the current position.voidsetProgress(int val) Used to update the current progress value, should be between 0 and the value sent to setProgressMax.voidsetProgressDialog(ProgressDialog dialog) voidsetProgressMax(int max) Used to indicate the upper bound of value that will be passed to setProgress.
- 
Field Details- 
dialog
- 
canceledprotected boolean canceled
 
- 
- 
Constructor Details- 
ProgressTaskpublic ProgressTask()
 
- 
- 
Method Details- 
setProgressDialog
- 
setProgressMaxpublic void setProgressMax(int max) Description copied from interface:ProgressListenerUsed to indicate the upper bound of value that will be passed to setProgress.- Specified by:
- setProgressMaxin interface- ProgressListener
 
- 
setProgresspublic void setProgress(int val) Description copied from interface:ProgressListenerUsed to update the current progress value, should be between 0 and the value sent to setProgressMax.- Specified by:
- setProgressin interface- ProgressListener
 
- 
setNoteDescription copied from interface:ProgressListenerSets some sort of note or information about the current position.- Specified by:
- setNotein interface- ProgressListener
 
- 
setIndeterminatepublic void setIndeterminate(boolean bool) Description copied from interface:ProgressListenerAllows the object performing the action to indicate that it won't be able to report back progress information.- Specified by:
- setIndeterminatein interface- ProgressListener
 
- 
run- Throws:
- Exception
 
- 
allowsCancelprotected boolean allowsCancel()
- 
isCanceledpublic boolean isCanceled()
 
-