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 16:56:35 6 */ 7 package org.asyrinx.joey.om.condition; 8 9 /*** 10 * @author takeshi 11 */ 12 public interface IConditionLeaf extends ICondition { 13 14 String getFieldName(); 15 16 String getOperator(); 17 18 Object getValue(); 19 20 }