2015-05-18 23:05:20 -07:00
|
|
|
|
//: patterns/trash/Fillable.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-05-05 11:20:13 -07:00
|
|
|
|
// Any object that can be filled with Trash.
|
|
|
|
|
package patterns.trash;
|
|
|
|
|
|
2015-05-27 23:30:19 -07:00
|
|
|
|
public interface Fillable<T extends Trash> {
|
|
|
|
|
void addTrash(T t);
|
2015-05-05 11:20:13 -07:00
|
|
|
|
} ///:~
|