OSDN Git Service

インタフェース名変更: Proxy -> ProxyProfile
authoryukihane <yukihane.feather@gmail.com>
Fri, 19 Aug 2011 21:27:58 +0000 (06:27 +0900)
committeryukihane <yukihane.feather@gmail.com>
Fri, 19 Aug 2011 21:27:58 +0000 (06:27 +0900)
frontend/src/saccubus/converter/classic/profile/Proxy.java
frontend/src/saccubus/converter/filegetter/FileInstanciator.java
frontend/src/saccubus/converter/filegetter/WebFileInstanciator.java
frontend/src/yukihane/saccubus/converter/profile/Profile.java
frontend/src/yukihane/saccubus/converter/profile/ProxyProfile.java [moved from frontend/src/yukihane/saccubus/converter/profile/Proxy.java with 81% similarity]

index a42ee6c..8c2f71f 100644 (file)
@@ -7,7 +7,7 @@ import org.apache.commons.lang.StringUtils;
  *
  * @author yuki
  */
-public class Proxy implements yukihane.saccubus.converter.profile.Proxy {
+public class Proxy implements yukihane.saccubus.converter.profile.ProxyProfile {
 
     private String host;
     private int port;
index 40798a9..1bffb42 100644 (file)
@@ -9,7 +9,7 @@ import saccubus.ConvertStopFlag;
 import yukihane.saccubus.converter.profile.InputFileSetting;
 import saccubus.net.TextProgressListener;
 import yukihane.saccubus.converter.profile.LoinProfile;
-import yukihane.saccubus.converter.profile.Proxy;
+import yukihane.saccubus.converter.profile.ProxyProfile;
 
 /**
  * ダウンロード処理を全く必要としない場合のファイルインスタンス化クラス.
@@ -43,7 +43,7 @@ public class FileInstanciator {
             CommentInstanciationType commentType,
             InstanciationType tcommType,
             LoinProfile li,
-            Proxy proxy,
+            ProxyProfile proxy,
             String tag, String time) throws
             IOException {
         FileInstanciator getter;
index 23940a9..5d72627 100644 (file)
@@ -10,7 +10,7 @@ import saccubus.net.NicoClient;
 import saccubus.net.VideoInfo;
 import saccubus.util.WayBackTimeParser;
 import yukihane.inqubus.saccubus_adapter.NicoBrowserAdapter;
-import yukihane.saccubus.converter.profile.Proxy;
+import yukihane.saccubus.converter.profile.ProxyProfile;
 import yukihane.saccubus.converter.profile.LoinProfile;
 
 /**
@@ -29,7 +29,7 @@ public class WebFileInstanciator extends FileInstanciator {
             CommentInstanciationType commentType,
             InstanciationType tcommType,
             LoinProfile li,
-            Proxy proxy,
+            ProxyProfile proxy,
             String tag,
             String time) throws IOException {
         super(videoType, commentType, tcommType, tag);
index ed0ab1b..c9027e6 100644 (file)
@@ -8,7 +8,7 @@ public interface Profile {
 
     LoinProfile getLoginInfo();
 
-    Proxy getProxySetting();
+    ProxyProfile getProxySetting();
 
     InputFileSetting getVideoSetting();
 
@@ -4,7 +4,7 @@ package yukihane.saccubus.converter.profile;
  *
  * @author yuki
  */
-public interface Proxy {
+public interface ProxyProfile {
 
     boolean use();