KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > simpletrl > EnumLiteral


1 package simpletrl;
2 public interface EnumLiteral extends simpletrl.LiteralExp{ public String JavaDoc getVal() throws javax.jmi.reflect.JmiException;
3     public void setVal(String JavaDoc newValue) throws javax.jmi.reflect.JmiException;
4     public String JavaDoc getType() throws javax.jmi.reflect.JmiException;
5     public void setType(String JavaDoc newValue) throws javax.jmi.reflect.JmiException;
6     public boolean isFromMmSrc() throws javax.jmi.reflect.JmiException;
7     public void setFromMmSrc(boolean newValue) throws javax.jmi.reflect.JmiException;
8 }
9
Popular Tags