예제 #1
0
 public void open() throws DbException, NoSuchElementException, TransactionAbortedException {
   child.open();
 }
예제 #2
0
파일: Filter.java 프로젝트: IrvineXu/CS143
 public void open() throws DbException, NoSuchElementException, TransactionAbortedException {
   // some code goes here
   // DONE
   _child.open();
   super.open();
 }