Home | History | Annotate | Download | only in testing

Lines Matching defs:list

23 import java.util.List;
58 /** We will keep a private list of all logged records */
59 private final List<LogRecord> list =
63 * Adds the most recently logged record to our list.
67 list.add(record);
77 list.clear();
81 * Fetch the list of logged records
82 * @return unmodifiable LogRecord list of all logged records
84 public List<LogRecord> getStoredLogRecords() {
85 List<LogRecord> result = new ArrayList<LogRecord>(list);