コード例 #1
0
ファイル: BoostingTermQuery.cs プロジェクト: vernon016/mono
        public override bool Equals(System.Object o)
        {
            if (!(o is BoostingTermQuery))
            {
                return(false);
            }
            BoostingTermQuery other = (BoostingTermQuery)o;

            return((this.GetBoost() == other.GetBoost()) && this.term.Equals(other.term));
        }
コード例 #2
0
ファイル: BoostingTermQuery.cs プロジェクト: vernon016/mono
 public BoostingTermWeight(BoostingTermQuery enclosingInstance, BoostingTermQuery query, Searcher searcher) : base(enclosingInstance, query, searcher)
 {
     InitBlock(enclosingInstance);
 }
コード例 #3
0
ファイル: BoostingTermQuery.cs プロジェクト: carrie901/mono
			public BoostingTermWeight(BoostingTermQuery enclosingInstance, BoostingTermQuery query, Searcher searcher):base(enclosingInstance, query, searcher)
			{
				InitBlock(enclosingInstance);
			}
コード例 #4
0
ファイル: BoostingTermQuery.cs プロジェクト: vernon016/mono
 private void  InitBlock(BoostingTermQuery enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
コード例 #5
0
ファイル: BoostingTermQuery.cs プロジェクト: carrie901/mono
			private void  InitBlock(BoostingTermQuery enclosingInstance)
			{
				this.enclosingInstance = enclosingInstance;
			}