public void setAs(SendRec value) { m_PresenceVector = value.getPresenceVector(); m_ReliableDelivery = value.getReliableDelivery(); m_Priority = value.getPriority(); m_DestinationID.setAs(value.getDestinationID()); m_SourceID.setAs(value.getSourceID()); m_MessagePayload.setAs(value.getMessagePayload()); }
public bool isEquals(SendRec value) { if ((m_PresenceVector != value.getPresenceVector()) || (m_ReliableDelivery != value.getReliableDelivery()) || (m_Priority != value.getPriority()) || (m_DestinationID.notEquals(value.getDestinationID())) || (m_SourceID.notEquals(value.getSourceID())) || (m_MessagePayload.notEquals(value.getMessagePayload()))) { return(false); } return(true); }
public SendRec(SendRec value) { m_DestinationID = new DestinationID(); m_SourceID = new SourceID(); m_MessagePayload = new MessagePayload(); // Copy the values m_PresenceVector = value.getPresenceVector(); m_ReliableDelivery = value.getReliableDelivery(); m_DestinationID = value.getDestinationID(); m_SourceID = value.getSourceID(); m_Priority = value.getPriority(); m_MessagePayload = value.getMessagePayload(); }
public bool isEquals(SendRec value) { if ((m_PresenceVector != value.getPresenceVector()) || (m_ReliableDelivery != value.getReliableDelivery()) || (m_Priority != value.getPriority()) || (m_DestinationID.notEquals(value.getDestinationID())) || (m_SourceID.notEquals(value.getSourceID())) || (m_MessagePayload.notEquals(value.getMessagePayload()))) { return false; } return true; }