4 import java.io.IOException;
7 * いんきゅばすがニコニコ動画にアクセスするためのクラスが実装すべきインタフェース.
8 * ログイン処理はコンストラクタ内で実行しておき、各メソッドは同一セッションで実行される必要があります.
11 public interface NicoClient {
13 /** @return ログインが正常に完了していればtrue. */
16 VideoInfo getVideoInfo(String videoId) throws IOException;
18 CommentInfo getWayBackKey(VideoInfo vi, String time) throws IOException;
20 File getVideo(VideoInfo videoInfo, File file, TextProgressListener listener);
22 File getComment(VideoInfo videoInfo, CommentInfo commentInfo, File file, TextProgressListener listener, String com);
24 File getTcomment(VideoInfo videoInfo, File file, TextProgressListener listener);