Class NullActivityProgress

  • All Implemented Interfaces:
    ActivityProgress

    public class NullActivityProgress
    extends java.lang.Object
    implements ActivityProgress
    Created by IntelliJ IDEA. User: kir Date: Oct 29, 2008
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void checkCanceled()
      This method checks if underlying process should be cancelled without completion.
      void setFraction​(float completed)
      Allows to set the completion of the task (should be between 0 and 1 inclusive)
      void setProgressText​(java.lang.String progressText)
      Set current progress text
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • NullActivityProgress

        public NullActivityProgress()
    • Method Detail

      • setFraction

        public void setFraction​(float completed)
        Description copied from interface: ActivityProgress
        Allows to set the completion of the task (should be between 0 and 1 inclusive)
        Specified by:
        setFraction in interface ActivityProgress
        Parameters:
        completed - number 0..1 to specify completed percent
      • setProgressText

        public void setProgressText​(java.lang.String progressText)
        Description copied from interface: ActivityProgress
        Set current progress text
        Specified by:
        setProgressText in interface ActivityProgress
        Parameters:
        progressText - short description of the current operation
      • checkCanceled

        public void checkCanceled()
        Description copied from interface: ActivityProgress
        This method checks if underlying process should be cancelled without completion. It should be checked periodically during the action run.
        Specified by:
        checkCanceled in interface ActivityProgress