KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > simpletrl > PropertyAssignExp


1 package simpletrl;
2 public interface PropertyAssignExp extends simpletrl.StatementExp ,simpletrl.ContextExp{ public String JavaDoc getPropName() throws javax.jmi.reflect.JmiException;
3     public void setPropName(String JavaDoc newValue) throws javax.jmi.reflect.JmiException;
4     public simpletrl.ValueExp getValue() throws javax.jmi.reflect.JmiException;
5     public void setValue(simpletrl.ValueExp newValue) throws javax.jmi.reflect.JmiException;
6 }
7
Popular Tags