- コミット日時:
- 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/IFeed.as
r963 r985 12 12 { 13 13 /** 14 * feed object interface.14 * フィードクラスのメソッドを提供します。 15 15 */ 16 16 public interface IFeed 17 17 { 18 18 /** 19 * get title attribute.19 * フィードのタイトルを取得します。 20 20 */ 21 21 function get title():String; 22 22 23 23 /** 24 * get link attribute.24 * フィードのリンクを取得します。 25 25 */ 26 26 function get link():String; 27 27 28 28 /** 29 * get entries.29 * フィードのエントリーを取得します。 30 30 */ 31 31 function get entries():Array; 32 32 33 33 /** 34 * representation the object string format.34 * フィードクラスの文字列表現を取得します。 35 35 */ 36 36 function toString():String; 37 37 } 38 38 } 39

