OSDN Git Service
(root)
/
coroid
/
inqubus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
fa2ebd5
)
メソッド名の誤字修正
author
yukihane
<yukihane.feather@gmail.com>
Fri, 19 Aug 2011 10:49:13 +0000
(19:49 +0900)
committer
yukihane
<yukihane.feather@gmail.com>
Fri, 19 Aug 2011 10:49:13 +0000
(19:49 +0900)
frontend/src/saccubus/converter/Converter.java
patch
|
blob
|
history
frontend/src/saccubus/converter/filegetter/FileInstanciator.java
patch
|
blob
|
history
frontend/src/saccubus/converter/filegetter/WebFileInstanciator.java
patch
|
blob
|
history
frontend/src/saccubus/converter/profile/CommentGetInfo.java
patch
|
blob
|
history
diff --git
a/frontend/src/saccubus/converter/Converter.java
b/frontend/src/saccubus/converter/Converter.java
index
6f4a4fe
..
bda3956
100644
(file)
--- a/
frontend/src/saccubus/converter/Converter.java
+++ b/
frontend/src/saccubus/converter/Converter.java
@@
-157,7
+157,7
@@
public class Converter extends AbstractCommand implements Runnable, Callable<Boo
FileInstanciator.InstanciationType videoType = new FileInstanciator.InstanciationType(Setting.getVideoSetting());
FileInstanciator.CommentInstanciationType commentType = new FileInstanciator.CommentInstanciationType(Setting.
FileInstanciator.InstanciationType videoType = new FileInstanciator.InstanciationType(Setting.getVideoSetting());
FileInstanciator.CommentInstanciationType commentType = new FileInstanciator.CommentInstanciationType(Setting.
- getCommentSetting(), Setting.getCommentGetInfo().is
s
elfAdjustCommentNum(), Setting.getCommentGetInfo().
+ getCommentSetting(), Setting.getCommentGetInfo().is
S
elfAdjustCommentNum(), Setting.getCommentGetInfo().
getBackComment());
FileInstanciator.InstanciationType tcommType = new FileInstanciator.InstanciationType(
getBackComment());
FileInstanciator.InstanciationType tcommType = new FileInstanciator.InstanciationType(
diff --git
a/frontend/src/saccubus/converter/filegetter/FileInstanciator.java
b/frontend/src/saccubus/converter/filegetter/FileInstanciator.java
index
cc697a8
..
b1750d3
100644
(file)
--- a/
frontend/src/saccubus/converter/filegetter/FileInstanciator.java
+++ b/
frontend/src/saccubus/converter/filegetter/FileInstanciator.java
@@
-44,7
+44,7
@@
public class FileInstanciator {
String tag, String time) throws
IOException {
FileInstanciator getter;
String tag, String time) throws
IOException {
FileInstanciator getter;
- if (videoType.isDo
anload() || commentType.isDoanload() || tcommType.isDoa
nload()) {
+ if (videoType.isDo
wnload() || commentType.isDownload() || tcommType.isDow
nload()) {
getter = new WebFileInstanciator(stopFlag, videoType, commentType, tcommType, li, tag, time);
} else {
getter = new FileInstanciator(videoType, commentType, tcommType, tag);
getter = new WebFileInstanciator(stopFlag, videoType, commentType, tcommType, li, tag, time);
} else {
getter = new FileInstanciator(videoType, commentType, tcommType, tag);
@@
-155,7
+155,7
@@
public class FileInstanciator {
this.initFile = fileSetting.getFile().getFile();
}
this.initFile = fileSetting.getFile().getFile();
}
- public boolean isDo
a
nload() {
+ public boolean isDo
w
nload() {
return download;
}
return download;
}
diff --git
a/frontend/src/saccubus/converter/filegetter/WebFileInstanciator.java
b/frontend/src/saccubus/converter/filegetter/WebFileInstanciator.java
index
0401729
..
2dd64d2
100644
(file)
--- a/
frontend/src/saccubus/converter/filegetter/WebFileInstanciator.java
+++ b/
frontend/src/saccubus/converter/filegetter/WebFileInstanciator.java
@@
-67,16
+67,16
@@
public class WebFileInstanciator extends FileInstanciator {
throw new IOException(tag + "の情報の取得に失敗", ex);
}
throw new IOException(tag + "の情報の取得に失敗", ex);
}
- if (videoType.isDo
a
nload()) {
+ if (videoType.isDo
w
nload()) {
setVideoFileGetter(new VideoFileWebGetter(client, videoInfo));
}
setVideoFileGetter(new VideoFileWebGetter(client, videoInfo));
}
- if (commentType.isDo
a
nload()) {
+ if (commentType.isDo
w
nload()) {
setCommentFileGetter(new CommentFileWebGetter(client, videoInfo, commentInfo, commentType.isAutoCommentNum(),
commentType.getBackComment()));
}
setCommentFileGetter(new CommentFileWebGetter(client, videoInfo, commentInfo, commentType.isAutoCommentNum(),
commentType.getBackComment()));
}
- if (tcommType.isDo
a
nload()) {
+ if (tcommType.isDo
w
nload()) {
setTcommFileGetter(new TcommFileWebGetter(client, videoInfo));
}
}
setTcommFileGetter(new TcommFileWebGetter(client, videoInfo));
}
}
diff --git
a/frontend/src/saccubus/converter/profile/CommentGetInfo.java
b/frontend/src/saccubus/converter/profile/CommentGetInfo.java
index
c17634b
..
f0ae930
100644
(file)
--- a/
frontend/src/saccubus/converter/profile/CommentGetInfo.java
+++ b/
frontend/src/saccubus/converter/profile/CommentGetInfo.java
@@
-5,12
+5,14
@@
package saccubus.converter.profile;
/**
package saccubus.converter.profile;
/**
- *
+ *
コメント取得に関するプロファイルです.
* @author yuki
*/
public class CommentGetInfo {
* @author yuki
*/
public class CommentGetInfo {
+ /** コメント取得数を自動調整するのであればtrue. */
private final boolean selfAdjustCommentNum;
private final boolean selfAdjustCommentNum;
+ /** コメント取得数を自動調整しない場合の取得数. */
private final int backComment;
public CommentGetInfo(boolean selfAdjustCommentNum, int backComment) {
private final int backComment;
public CommentGetInfo(boolean selfAdjustCommentNum, int backComment) {
@@
-18,7
+20,7
@@
public class CommentGetInfo {
this.backComment = backComment;
}
this.backComment = backComment;
}
- public boolean is
s
elfAdjustCommentNum() {
+ public boolean is
S
elfAdjustCommentNum() {
return selfAdjustCommentNum;
}
return selfAdjustCommentNum;
}