程序包 org.meteoinfo.ui

类 ProgressBarUpdator

  • 所有已实现的接口:
    java.lang.Runnable

    public class ProgressBarUpdator
    extends java.lang.Object
    implements java.lang.Runnable
    作者:
    yaqiang
    • 构造器概要

      构造器 
      构造器 说明
      ProgressBarUpdator​(javax.swing.JProgressBar jpb)
      Constructor
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      void run()
      Action of the thread will be executed here.
      void setValue​(java.lang.Integer value)
      Sets the value to the progress bar
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 构造器详细资料

      • ProgressBarUpdator

        public ProgressBarUpdator​(javax.swing.JProgressBar jpb)
        Constructor
        参数:
        jpb - The progress bar this has to update
    • 方法详细资料

      • setValue

        public void setValue​(java.lang.Integer value)
        Sets the value to the progress bar
        参数:
        value - Value to set
      • run

        public void run()
        Action of the thread will be executed here. The value of the progress bar will be set here.
        指定者:
        run 在接口中 java.lang.Runnable