/** * Insert the type's description here. * Creation date: (3/3/2003 2:28:43 AM) * @author: Administrator */ class Assignment extends Statement{ private String lhs; private Expr rhs; /** * Assignment constructor comment. */ public Assignment() { super(); } public Assignment(String l, Expr r){ lhs=l; rhs=r; } String toXML(){ String result=""; result += "" + lhs + ""; result += rhs.toXML(); result += ""; return result; } }