Exemplo n.º 1
0
    public Body(Body value) {
      /// Initiliaze the protected variables
      m_RejectEventRequestRec = new RejectEventRequestRec();
      m_RejectEventRequestRec.setParent(this);

      /// Copy the values
      m_RejectEventRequestRec = value.m_RejectEventRequestRec;
      m_RejectEventRequestRec.setParent(this);
      /// This code is currently not supported
    }
Exemplo n.º 2
0
    public RejectEventRequest.Body assign(Body value) {
      m_RejectEventRequestRec = value.m_RejectEventRequestRec;
      m_RejectEventRequestRec.setParent(this);
      /// This code is currently not supported

      return this;
    }
Exemplo n.º 3
0
 public Body() {
   m_RejectEventRequestRec = new RejectEventRequestRec();
   m_RejectEventRequestRec.setParent(this);
 }