示例#1
0
文件: ListItem.java 项目: zhaog/cdt
 public ListItem getNext() throws CoreException {
   long next = db.getRecPtr(record + NEXT);
   return next != 0 ? new ListItem(db, next) : null;
 }
示例#2
0
文件: ListItem.java 项目: zhaog/cdt
 public ListItem getPrev() throws CoreException {
   long prev = db.getRecPtr(record + PREV);
   return prev != 0 ? new ListItem(db, prev) : null;
 }
示例#3
0
文件: ListItem.java 项目: zhaog/cdt
 public long getItem() throws CoreException {
   return db.getRecPtr(record + ITEM);
 }