All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ochafik.util.progress.ProgressModel Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package com.ochafik.util.progress;

public interface ProgressModel {
    public void setIndeterminate(boolean value);
    public boolean isIndeterminate();
    public void addProgress(long value);
    public void setProgress(long value);
    public long getProgress();
    public void addMaximum(long value);
    public void setMaximum(long max);
    public long getMaximum();
    public String getTitle();
    public String getComment();
    public void setTitle(String t);
    public void setComment(String t);
    public void setShowRemainingTime(boolean value);
    public boolean getShowRemainingTime();

    public boolean isInterrupted();
    public void setInterrupted(boolean value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy