c574d3a
1
2
3
4
5
6
7
8
9
10
package bookstoreex; /** * Created by Administrator on 2017/6/16. */ public interface Observer { void update(String book); }