Show
Ignore:
Timestamp:
07/03/08 19:49:47 (5 months ago)
Author:
yamashiro
Message:

不正なid/パスワードのときに固まる問題が再現したので修正した。また、その際に、userNameなどをuserIdに統一するようにリファクタリングしたり、その他のリファクタを行った

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • platform/eclipse/sabotter/trunk/jp.xet.sabotter.core/src/jp/xet/sabotter/core/MiniblogServiceResponceAdapter.java

    r15107 r15114  
    55import jp.xet.sabotter.core.exception.MiniblogServiceException; 
    66 
    7  
    87/** 
    9  * <code>twitter4j.TwitterAdapter</code>の代替クラス 
     8 * MiniblogServiceResponceListenerのAdapterクラス。何も実装していません 
    109 *  
    11  * @author Ewigkeit 
    12  * @see twitter4j.TwitterAdapter 
     10 * @author Ewigkeit yamashiro 
    1311 */ 
    1412public class MiniblogServiceResponceAdapter implements MiniblogServiceResponceListener { 
     
    3230        /** 
    3331         * Override method. 
     32         *  
    3433         * @see jp.xet.sabotter.core.MiniblogServiceResponceListener#gotReplies(java.util.List) 
    3534         */ 
     
    3837         
    3938        /** 
    40          * Override method. 
    41          *  
    42          * @see jp.xet.sabotter.core.MiniblogServiceResponceListener#onException(jp.xet.sabotter.core.exception.MiniblogServiceException, 
    43          *      int) 
     39         * {@inheritDoc} 
    4440         */ 
    4541        public void onException(MiniblogServiceException ex, int method) { 
    4642        } 
     43         
     44        /** 
     45         * {@inheritDoc} 
     46         */ 
     47        public void onFavoriteDone(MiniblogEntry entry) { 
     48        } 
    4749}