Changeset 15114 for platform/eclipse/sabotter/trunk/jp.xet.sabotter.core/src/jp/xet/sabotter/core/wassr/WassrEntry.java
- Timestamp:
- 07/03/08 19:49:47 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
platform/eclipse/sabotter/trunk/jp.xet.sabotter.core/src/jp/xet/sabotter/core/wassr/WassrEntry.java
r15090 r15114 1 1 package jp.xet.sabotter.core.wassr; 2 2 3 import java.text.ParseException;4 3 import java.util.Date; 5 4 … … 7 6 import jp.xet.sabotter.core.MiniblogUser; 8 7 8 /** 9 * わっサー版のエントリーです。 10 * 11 * @author yamashiro 12 */ 9 13 @SuppressWarnings("serial") 10 14 public class WassrEntry implements MiniblogEntry { … … 29 33 /** 30 34 * コンストラクタ。 31 * @param id32 * @param text33 * @param t imeStamp34 * @param user35 * @param isDirectMessage36 * @param is MessageToMe37 * @param isM yEntry38 * @ category instancecreation35 * 36 * @param id 37 * @param text 38 * @param timeStamp 39 * @param user 40 * @param isDirectMessage 41 * @param isMessageToMe 42 * @param isMyEntry creation 39 43 */ 40 44 public WassrEntry(String id, String text, Date timeStamp, MiniblogUser user, boolean isDirectMessage, … … 57 61 } 58 62 63 /** 64 * {@inheritDoc} 65 */ 59 66 public String getId() { 60 67 return id; 61 68 } 62 69 70 /** 71 * {@inheritDoc} 72 */ 63 73 public String getText() { 64 74 return text; 65 75 } 66 76 67 public Date getTimeSatmp() throws ParseException { 77 /** 78 * {@inheritDoc} 79 */ 80 public Date getTimeSatmp() { 68 81 return timeStamp; 69 82 } 70 83 84 /** 85 * {@inheritDoc} 86 */ 71 87 public MiniblogUser getUser() { 72 88 return user; 73 89 } 74 90 91 /** 92 * {@inheritDoc} 93 */ 75 94 public boolean isDirectMessage() { 76 95 return isDirectMessage; 77 96 } 78 97 98 /** 99 * {@inheritDoc} 100 */ 79 101 public boolean isMessageToMe(String myId) { 80 102 return isMessageToMe; 81 103 } 82 104 105 /** 106 * {@inheritDoc} 107 */ 83 108 public boolean isMyEntry(String myId) { 84 109 return isMyEntry; 85 110 } 86 111 112 /** 113 * {@inheritDoc} 114 */ 87 115 public boolean isUnread() { 88 116 return isUnread; 89 117 } 90 118 119 /** 120 * {@inheritDoc} 121 */ 91 122 public void setUnread(boolean unread) { 92 123 this.isUnread = unread;
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)