OSDN Git Service

NicoClientをインタフェース化
[coroid/inqubus.git] / frontend / src / saccubus / net / NicoClient.java
1 package saccubus.net;
2
3 import java.io.File;
4 import java.io.IOException;
5
6 /**
7  *
8  * @author yuki
9  */
10 public interface NicoClient {
11
12     String getBackCommentFromLength(VideoInfo videoInfo, String com);
13
14     File getComment(VideoInfo videoInfo, File file, TextProgressListener listener, String com);
15
16     File getTcomment(VideoInfo videoInfo, File file, TextProgressListener listener);
17
18     File getVideo(VideoInfo videoInfo, File file, TextProgressListener listener);
19
20     boolean isLoggedIn();
21
22     VideoInfo getVideoInfo(String tag, String time) throws IOException;
23
24 }