package jp.terasoluna.fw.collector;
public class AbstractCollectorStub7<P> extends AbstractCollector<P> {
public Integer call() throws Exception {
return null;
}
@Override
protected Object clone() throws CloneNotSupportedException {
return super.clone();
}
}