コード例 #1
0
ファイル: MResults.cs プロジェクト: approach0/fork-indri
 public MResults(MResults other) : this(indri_csharpPINVOKE.new_MResults__SWIG_1(MResults.getCPtr(other)), true)
 {
     if (indri_csharpPINVOKE.SWIGPendingException.Pending)
     {
         throw indri_csharpPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #2
0
ファイル: MResults.cs プロジェクト: approach0/fork-indri
 public MResultsEnumerator(MResults collection)
 {
     collectionRef = collection;
     keyCollection = new System.Collections.Generic.List <string>(collection.Keys);
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
コード例 #3
0
        public MResults getAnnotations()
        {
            MResults ret = new MResults(indri_csharpPINVOKE.QueryAnnotation_getAnnotations(swigCPtr), false);

            if (indri_csharpPINVOKE.SWIGPendingException.Pending)
            {
                throw indri_csharpPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #4
0
ファイル: MResults.cs プロジェクト: approach0/fork-indri
 internal static HandleRef getCPtr(MResults obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }
コード例 #5
0
ファイル: MResults.cs プロジェクト: oroszgy/sefh
 public MResults(MResults arg0)
     : this(indri_csharpPINVOKE.new_MResults__SWIG_1(MResults.getCPtr(arg0)), true)
 {
     if (indri_csharpPINVOKE.SWIGPendingException.Pending) throw indri_csharpPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #6
0
ファイル: MResults.cs プロジェクト: oroszgy/sefh
 internal static HandleRef getCPtr(MResults obj)
 {
     return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
 }
コード例 #7
0
ファイル: QueryAnnotation.cs プロジェクト: jsc/indri-5.9
 public MResults getAnnotations() {
   MResults ret = new MResults(indri_csharpPINVOKE.QueryAnnotation_getAnnotations(swigCPtr), false);
   if (indri_csharpPINVOKE.SWIGPendingException.Pending) throw indri_csharpPINVOKE.SWIGPendingException.Retrieve();
   return ret;
 }