JAL-3130 adapted getdown src. attempt 2. first attempt failed due to cp'ed .git files
[jalview.git] / getdown / src / getdown / core / src / main / java / com / threerings / getdown / util / ProgressObserver.java
1 //
2 // Getdown - application installer, patcher and launcher
3 // Copyright (C) 2004-2018 Getdown authors
4 // https://github.com/threerings/getdown/blob/master/LICENSE
5
6 package com.threerings.getdown.util;
7
8 /**
9  * Used to communicate progress.
10  */
11 public interface ProgressObserver
12 {
13     /**
14      * Informs the observer that we have completed the specified
15      * percentage of the process.
16      */
17     public void progress (int percent);
18 }