差分発生行の前後
無視リスト:
コミット日時:
2008/08/20 02:25:42 (3 年前)
コミッタ:
nobu
ログメッセージ:

Syndication: refs #52 #53

  • コメントを追記。
  • テストを追加。
ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/Syndication/trunk

    • 属性の設定値: svn:ignore (変更前)

      (変更後)
      log.txt
      .DS_Store
  • as3/Syndication/trunk/src

    • 属性の設定値: svn:ignore (登録)
      .DS_Store
  • as3/Syndication/trunk/src/org/libspark/syndication/IFeed.as

    r963 r985  
    1212{ 
    1313    /** 
    14      *  feed object interface. 
     14     *  フィードクラスのメソッドを提供します。 
    1515     */ 
    1616    public interface IFeed 
    1717    { 
    1818        /** 
    19          *  get title attribute. 
     19         *  フィードのタイトルを取得します。 
    2020         */ 
    2121        function get title():String; 
    2222 
    2323        /** 
    24          *  get link attribute. 
     24         *  フィードのリンクを取得します。 
    2525         */ 
    2626        function get link():String; 
    2727         
    2828        /** 
    29          *  get entries. 
     29         *  フィードのエントリーを取得します。 
    3030         */ 
    3131        function get entries():Array; 
    3232         
    3333        /** 
    34          *  representation the object string format. 
     34         *  フィードクラスの文字列表現を取得します。 
    3535         */ 
    3636        function toString():String; 
    3737    } 
    3838} 
     39