예제 #1
0
 // FIXME: Really the only thing that is allowed as a subpart
 // of an 'Or' part are required (not prohibited) text or
 // property queries.  We should be clearer about the rules,
 // and enforce them.
 public void Add(QueryPart part)
 {
     sub_parts.Add(part);
 }
예제 #2
0
 // FIXME: Really the only thing that is allowed as a subpart
 // of an 'Or' part are required (not prohibited) text or
 // property queries.  We should be clearer about the rules,
 // and enforce them.
 public void Add (QueryPart part)
 {
         sub_parts.Add (part);
 }
예제 #3
0
파일: Query.cs 프로젝트: zweib730/beagrep
		public void AddPart (QueryPart part)
		{
			if (part != null)
				parts.Add (part);
		}