2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
11 public interface TextProgressListener {
13 void setText(String text);
15 * TextProgressListenerの何もしないバージョンの実装.
17 static final TextProgressListener EMPTY_LISTENER = new TextProgressListener() {
19 public void setText(String text) {