10 lines
156 B
Java
10 lines
156 B
Java
package org.apache.commons.collections;
|
|
|
|
import java.util.Collection;
|
|
|
|
public interface Buffer extends Collection {
|
|
Object get();
|
|
|
|
Object remove();
|
|
}
|