コード例 #1
0
 public MetadataPairVectorEnumerator(MetadataPairVector collection)
 {
     collectionRef = collection;
     currentIndex  = -1;
     currentObject = null;
     currentSize   = collectionRef.Count;
 }
コード例 #2
0
 public void SetRange(int index, MetadataPairVector values)
 {
     indri_csharpPINVOKE.MetadataPairVector_SetRange(swigCPtr, index, MetadataPairVector.getCPtr(values));
     if (indri_csharpPINVOKE.SWIGPendingException.Pending)
     {
         throw indri_csharpPINVOKE.SWIGPendingException.Retrieve();
     }
 }
コード例 #3
0
        public static MetadataPairVector Repeat(MetadataPair value, int count)
        {
            IntPtr             cPtr = indri_csharpPINVOKE.MetadataPairVector_Repeat(MetadataPair.getCPtr(value), count);
            MetadataPairVector ret  = (cPtr == IntPtr.Zero) ? null : new MetadataPairVector(cPtr, true);

            if (indri_csharpPINVOKE.SWIGPendingException.Pending)
            {
                throw indri_csharpPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #4
0
        public MetadataPairVector GetRange(int index, int count)
        {
            IntPtr             cPtr = indri_csharpPINVOKE.MetadataPairVector_GetRange(swigCPtr, index, count);
            MetadataPairVector ret  = (cPtr == IntPtr.Zero) ? null : new MetadataPairVector(cPtr, true);

            if (indri_csharpPINVOKE.SWIGPendingException.Pending)
            {
                throw indri_csharpPINVOKE.SWIGPendingException.Retrieve();
            }
            return(ret);
        }
コード例 #5
0
ファイル: MetadataPairVector.cs プロジェクト: jsc/indri-5.9
 public void SetRange(int index, MetadataPairVector values) {
   indri_csharpPINVOKE.MetadataPairVector_SetRange(swigCPtr, index, MetadataPairVector.getCPtr(values));
   if (indri_csharpPINVOKE.SWIGPendingException.Pending) throw indri_csharpPINVOKE.SWIGPendingException.Retrieve();
 }
コード例 #6
0
ファイル: MetadataPairVector.cs プロジェクト: jsc/indri-5.9
 internal static HandleRef getCPtr(MetadataPairVector obj) {
   return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
 }
コード例 #7
0
ファイル: MetadataPairVector.cs プロジェクト: jsc/indri-5.9
 public MetadataPairVectorEnumerator(MetadataPairVector collection) {
   collectionRef = collection;
   currentIndex = -1;
   currentObject = null;
   currentSize = collectionRef.Count;
 }
コード例 #8
0
 internal static HandleRef getCPtr(MetadataPairVector obj)
 {
     return((obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr);
 }