16 lines
317 B
Groovy
Raw Normal View History

2011-01-09 15:11:36 -06:00
package com.jdbernard.timeanalyzer
public abstract class Category implements Comparable<T extends Category> {
List<Entry> entries
public abstract boolean matchesEvent(Event e)
public abstract Entry addEvent(Event e)
public Category() { entries = [] }
public int compareTo(C other) {
}
}