View Javadoc

1   /*
2    * joey-rt and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/11/19 17:01:13
6    */
7   package org.asyrinx.joey.om.condition;
8   
9   import java.util.Iterator;
10  
11  /***
12   * @author takeshi
13   */
14  public interface IConditionComposite extends ICondition {
15  
16      String getOperator();
17  
18      public Iterator iterator();
19  
20  }