14 lines
278 B
Java
14 lines
278 B
Java
package com.tridium.eas.cost.util;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface Result {
|
|
Record extra(Record record, int i) throws IOException;
|
|
|
|
Record first(Record record) throws IOException;
|
|
|
|
long getSize();
|
|
|
|
Record next(Record record) throws IOException;
|
|
}
|