public void Initialize()
 {
     if (this.m_dataSet.LookupDestinationInfos != null)
     {
         this.m_lookupProcessor = new RuntimeLookupProcessing(this.m_odpContext, this.m_dataSet, this.m_dataSetInstance, this);
     }
 }
 public void CompleteLookupProcessing()
 {
     if (this.m_lookupProcessor != null)
     {
         this.m_lookupProcessor.CompleteLookupProcessing();
         this.m_lookupProcessor = null;
     }
 }