コード例 #1
0
ファイル: LogReport.java プロジェクト: irudyak/ant-toolkit
  public List<LogEntry> getOrderedLogEntries() {
    if (!isOrdered) {
      Collections.sort(logEntries, LogEntryComparator.instance());
      isOrdered = true;
    }

    return logEntries;
  }
コード例 #2
0
ファイル: LogReport.java プロジェクト: irudyak/ant-toolkit
  public List<LogEntry> getOrderedAuthorLogEntries(String author) {
    List<LogEntry> entries = getUnorderedAuthorLogEntries(author);
    Collections.sort(entries, LogEntryComparator.instance());

    return entries;
  }