protected internal virtual void copy_from(SnowballProgram other)
 {
     current = other.current;
     cursor = other.cursor;
     limit = other.limit;
     limit_backward = other.limit_backward;
     bra = other.bra;
     ket = other.ket;
 }
示例#2
0
 public Among(System.String s, int substring_i, int result, System.String methodname, SnowballProgram methodobject)
 {
     this.s_size       = s.Length;
     this.s            = s;
     this.substring_i  = substring_i;
     this.result       = result;
     this.methodobject = methodobject;
     if (methodname.Length == 0)
     {
         this.method = null;
     }
     else
     {
         try
         {
             this.method = methodobject.GetType().GetMethod(methodname, System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Public | System.Reflection.BindingFlags.DeclaredOnly, null, new System.Type[0], null);
         }
         catch (System.MethodAccessException e)
         {
             this.method = null;
         }
     }
 }