/* * * Copy Constructor * */ public Receive_1_1(Receive_1_1 value) { m_Name = "Receive"; // Copy the values m_Body.setAs(value.getBody()); }
/* * * @param value the value to compare with to determine inequality * */ public bool notEquals(Receive_1_1 value) { if (m_Body.equals(value.m_Body)) { return(false); } return(true); }
/* * * @param value the value to be copied * */ public Receive_1_1 setAs(Receive_1_1 value) { m_Body = value.m_Body; return(this); }
/* * * @param value the value to be copied * */ public Receive_1_1 setAs(Receive_1_1 value) { m_Body = value.m_Body; return this; }
/* * * @param value the value to compare with to determine inequality * */ public bool notEquals(Receive_1_1 value) { if (m_Body.equals(value.m_Body)) { return false; } return true; }