コード例 #1
0
ファイル: HistoryEntry.java プロジェクト: YaqubGhazi/olat
 public boolean isSame(UserRequest ureq) {
   return (componentId.equals(ureq.getComponentID())
       && windowTimestamp.equals(ureq.getTimestampID())
       && componentTimestamp.equals(ureq.getComponentTimestamp()));
 }
コード例 #2
0
ファイル: HistoryEntry.java プロジェクト: YaqubGhazi/olat
 public HistoryEntry(UserRequest ureq) {
   this.componentId = ureq.getComponentID();
   this.windowTimestamp = ureq.getTimestampID();
   this.componentTimestamp = ureq.getComponentTimestamp();
 }