1 /*! 2 * @include "_NameSpace.js" 3 */ 4 5 /** 6 * レスの情報を保持するオブジェクト。 7 * ※プロパティで左辺代入可能となっているものでも、取得元によっては書き換えが禁止の場合あり。 8 * @class _JVS.ResItem 9 */ 10 _JVS.ResItem = function(){ 11 /** 12 * ResItemが参照するレス情報の実体が存在しているかどうか 13 * true 存在しており、アクセス可能 14 * false 削除されており、アクセス不可 15 * Action:○ LateCall:○ Command:○ 16 * @type bool 17 */ 18 this.Connected = true; 19 20 /** 21 * 保持しているレスの日付欄の文字列(日付の他にID、BE情報などを含む) 22 * Action:○ LateCall:○ Command:○ 23 * @type String 24 */ 25 this.Date = ""; 26 27 /** 28 * 保持しているレスの投稿時刻 29 * Action:○ LateCall:○ Command:○ 30 * @type int 31 */ 32 this.DateValue = 0; 33 34 /** 35 * 保持しているレスのID文字列 36 * Action:○ LateCall:○ Command:○ 37 * @type String 38 */ 39 this.Id = ""; 40 41 /** 42 * 保持しているレスのメール欄の文字列 43 * Action:○ LateCall:○ Command:○ 44 * @type String 45 */ 46 this.Mail = "sage"; 47 48 /** 49 * 保持しているレスの本文文字列 50 * Action:○ LateCall:○ Command:○ 51 * @type String 52 */ 53 this.Msg = ""; 54 55 /** 56 * 保持しているレスの名前欄の文字列 57 * Action:○ LateCall:○ Command:○ 58 * @type String 59 */ 60 this.Name = ""; 61 62 /** 63 * 保持しているレスのレス番 64 * Action:○ LateCall:○ Command:○ 65 * @type int 66 */ 67 this.Number = 1; 68 69 /** 70 * 保持しているレスが属するスレのタイトル 71 * Action:○ LateCall:○ Command:○ 72 * @type String 73 */ 74 this.Title = ""; 75 76 /** 77 * 保持しているレスが属するスレのURL(レス番は付かない) 78 * Action:○ LateCall:○ Command:○ 79 * @type String 80 */ 81 this.URL = ""; 82 }; 83