OSDN Git Service
(root)
/
coroid
/
inqubus.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
950540dfb362c6caa58ae57f0fd2270c5a483ecd
[coroid/inqubus.git]
/
frontend
/
src
/
saccubus
/
net
/
TextProgressListener.java
1
package saccubus.net;
2
3
/**
4
*
5
* @author yuki
6
*/
7
public interface TextProgressListener {
8
9
void setText(String text);
10
/**
11
* TextProgressListenerの何もしないバージョンの実装.
12
*/
13
static final TextProgressListener EMPTY_LISTENER = new TextProgressListener() {
14
15
public void setText(String text) {
16
}
17
};
18
}