1 2 12 package com.versant.core.jdbc.fetch; 13 14 import com.versant.core.common.OID; 15 import com.versant.core.common.State; 16 import com.versant.core.common.Debug; 17 import com.versant.core.common.BindingSupportImpl; 18 19 import java.sql.ResultSet ; 20 21 25 public class FetchOpDataProxy extends FetchOpData { 26 27 private FetchOpData src; 28 29 public FetchOpDataProxy(FetchOpData src) { 30 if (Debug.DEBUG) { 31 if (src == null) { 32 throw BindingSupportImpl.getInstance().internal("src == null"); 33 } 34 } 35 this.src = src; 36 } 37 38 public OID getOID(FetchResultImp fetchResult) { 39 return src.getOID(fetchResult); 40 } 41 42 public State getState(FetchResultImp fetchResult) { 43 return src.getState(fetchResult); 44 } 45 46 public ResultSet getResultSet(FetchResultImp fetchResult) { 47 return src.getResultSet(fetchResult); 48 } 49 50 } 51 52 | Popular Tags |