KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > simpletrl > IfValueExp


1 package simpletrl;
2 public interface IfValueExp extends simpletrl.IfExp ,simpletrl.ValueExp{ public simpletrl.ValueExp getElseExp() throws javax.jmi.reflect.JmiException;
3     public void setElseExp(simpletrl.ValueExp newValue) throws javax.jmi.reflect.JmiException;
4     public simpletrl.ValueExp getThenExp() throws javax.jmi.reflect.JmiException;
5     public void setThenExp(simpletrl.ValueExp newValue) throws javax.jmi.reflect.JmiException;
6 }
7
Popular Tags