dw = new DataWalker(whenFoundDoInsert, newKey, simpleDataMap) {
void perData(String foundKey, String foundData)
throws DatabaseException {
if (foundKey.equals(whenFoundDoInsert)) {
putAndVerifyCursor(cursor2, new StringDbt(newKey),
new StringDbt("ten"), true);
simpleDataMap.put(newKey, "ten");
}
}
};
} else {
dw = new BackwardsDataWalker(whenFoundDoInsert,
newKey,
simpleDataMap) {
void perData(String foundKey, String foundData)
throws DatabaseException {
if (foundKey.equals(whenFoundDoInsert)) {
putAndVerifyCursor(cursor2, new StringDbt(newKey),
new StringDbt("ten"), true);
simpleDataMap.put(newKey, "ten");
}
}
OperationStatus getFirst(StringDbt foundKey,