PutDomainInDesiredBucket() 개인적인 메소드

Subclasses can override this method to change how Semantic Domains are compared with any search key(s) and the priority types of matches for putting the domain into an appropriate search results bucket (if any). N.B. Strategy subclasses should take care not to add a domain to a bucket if it is already in a higher priority bucket.
private PutDomainInDesiredBucket ( ICmSemanticDomain domain ) : void
domain ICmSemanticDomain
리턴 void
예제 #1
0
		public void WalkDomains(SemDomSearchStrategy strat)
		{
			foreach (var domain in m_semdomRepo.AllInstances())
			{
				strat.PutDomainInDesiredBucket(domain);
			}
		}
 public void WalkDomains(SemDomSearchStrategy strat)
 {
     foreach (var domain in m_semdomRepo.AllInstances())
     {
         strat.PutDomainInDesiredBucket(domain);
     }
 }