public ListItem getNext() throws CoreException { long next = db.getRecPtr(record + NEXT); return next != 0 ? new ListItem(db, next) : null; }
public ListItem getPrev() throws CoreException { long prev = db.getRecPtr(record + PREV); return prev != 0 ? new ListItem(db, prev) : null; }
public long getItem() throws CoreException { return db.getRecPtr(record + ITEM); }