差分発生行の前後
無視リスト:
コミット日時:
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/IFeedEntry.as

    r963 r985  
    1212{ 
    1313    /** 
    14      *  feed entry interface. 
     14     *  フィードエントリークラスのメソッドを提供します。 
    1515     */ 
    1616    public interface IFeedEntry 
    1717    { 
    1818        /** 
    19          *  get author name. 
    20          * 
    21          *  RSS 1.0 
    22          *      - dc::creator 
    23          *  RSS 2.0 
    24          *      - dc::creator 
    25          *  ATOM 
    26          *      - author/name 
     19         *  エントリーの著者を取得します。 
    2720         */ 
    2821        function get author():String; 
    2922 
    3023        /** 
    31          *  get title. 
    32          * 
    33          *  RSS 1.0 
    34          *      - title 
    35          *  RSS 2.0 
    36          *      - title 
    37          *  ATOM 
    38          *      - title 
     24         *  エントリーのタイトルを取得します。 
    3925         */ 
    4026        function get title():String; 
    4127 
    4228        /** 
    43          *  get permalink url. 
    44          * 
    45          *  RSS 1.0 
    46          *      - link 
    47          *  RSS 2.0 
    48          *      - link 
    49          *  ATOM 
    50          *      - link@href 
     29         *  エントリーのパーマリンクを取得します。 
    5130         */ 
    5231        function get link():String; 
    5332 
    5433        /** 
    55          *  get description. 
    56          * 
    57          *  RSS 1.0 
    58          *      - content::encoded 
    59          *  RSS 2.0 
    60          *      - description 
    61          *  ATOM 
    62          *      - content 
     34         *  エントリーの詳細を取得します。 
    6335         */ 
    6436        function get description():String; 
    6537 
    6638        /** 
    67          *  get published date. 
    68          * 
    69          *  RSS 1.0 
    70          *      - dc::date 
    71          *  RSS 2.0 
    72          *      - pubDate 
    73          *  ATOM 
    74          *      - published 
     39         *  エントリーの公開日を取得します。 
    7540         */ 
    7641        function get published():Date; 
    7742 
    7843        /** 
    79          *  get categories. 
    80          * 
    81          *  RSS 1.0 
    82          *      - dc:subject 
    83          *  RSS 2.0 
    84          *      - category 
    85          *  ATOM 
    86          *      - category@term 
     44         *  エントリーのカテゴリーを取得します。 
    8745         */ 
    8846        function get categories():Array; 
    8947 
    9048        /** 
    91          *  representation the object string format. 
     49         *  エントリークラスの文字列表現を取得します。 
    9250         */ 
    9351        function toString():String; 
    9452    } 
    9553} 
     54