KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > simpletrl > Rule


1 package simpletrl;
2 public interface Rule extends javax.jmi.reflect.RefObject {
3     public String JavaDoc getName() throws javax.jmi.reflect.JmiException;
4     public void setName(String JavaDoc newValue) throws javax.jmi.reflect.JmiException;
5     public String JavaDoc getResultType() throws javax.jmi.reflect.JmiException;
6     public void setResultType(String JavaDoc newValue) throws javax.jmi.reflect.JmiException;
7     public String JavaDoc getComment() throws javax.jmi.reflect.JmiException;
8     public void setComment(String JavaDoc newValue) throws javax.jmi.reflect.JmiException;
9     public simpletrl.RulesUnit getUnit() throws javax.jmi.reflect.JmiException;
10     public void setUnit(simpletrl.RulesUnit newValue) throws javax.jmi.reflect.JmiException;
11     public java.util.List JavaDoc getStatements() throws javax.jmi.reflect.JmiException;
12 }
13
Popular Tags