link start!
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
package com.tridium.eas.cost.util;
|
||||
|
||||
public interface CopySupport {
|
||||
Object newCopy();
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user