예제 #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);
 }