- コミット日時:
- 2008/08/20 02:25:42 (3 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/Syndication/trunk
- 属性の設定値: svn:ignore (変更前)
(変更後)
log.txt
.DS_Store
- 属性の設定値: svn:ignore (変更前)
as3/Syndication/trunk/src
- 属性の設定値: svn:ignore (登録)
.DS_Store
- 属性の設定値: svn:ignore (登録)
as3/Syndication/trunk/src/org/libspark/syndication/IFeedEntry.as
r963 r985 12 12 { 13 13 /** 14 * feed entry interface.14 * フィードエントリークラスのメソッドを提供します。 15 15 */ 16 16 public interface IFeedEntry 17 17 { 18 18 /** 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 * エントリーの著者を取得します。 27 20 */ 28 21 function get author():String; 29 22 30 23 /** 31 * get title. 32 * 33 * RSS 1.0 34 * - title 35 * RSS 2.0 36 * - title 37 * ATOM 38 * - title 24 * エントリーのタイトルを取得します。 39 25 */ 40 26 function get title():String; 41 27 42 28 /** 43 * get permalink url. 44 * 45 * RSS 1.0 46 * - link 47 * RSS 2.0 48 * - link 49 * ATOM 50 * - link@href 29 * エントリーのパーマリンクを取得します。 51 30 */ 52 31 function get link():String; 53 32 54 33 /** 55 * get description. 56 * 57 * RSS 1.0 58 * - content::encoded 59 * RSS 2.0 60 * - description 61 * ATOM 62 * - content 34 * エントリーの詳細を取得します。 63 35 */ 64 36 function get description():String; 65 37 66 38 /** 67 * get published date. 68 * 69 * RSS 1.0 70 * - dc::date 71 * RSS 2.0 72 * - pubDate 73 * ATOM 74 * - published 39 * エントリーの公開日を取得します。 75 40 */ 76 41 function get published():Date; 77 42 78 43 /** 79 * get categories. 80 * 81 * RSS 1.0 82 * - dc:subject 83 * RSS 2.0 84 * - category 85 * ATOM 86 * - category@term 44 * エントリーのカテゴリーを取得します。 87 45 */ 88 46 function get categories():Array; 89 47 90 48 /** 91 * representation the object string format.49 * エントリークラスの文字列表現を取得します。 92 50 */ 93 51 function toString():String; 94 52 } 95 53 } 54

