Beispiel #1
0
            public GrantNodeID.JAUSApplicationLayerHeader  setJAUSApplicationLayerHeader(JAUSApplicationLayerHeader value)
            {
                m_HeaderRec = value.getHeaderRec();
                m_HeaderRec.setParent(this);

                return(this);
            }
Beispiel #2
0
 public bool isEqual(JAUSApplicationLayerHeader value)
 {
     if (!this.getHeaderRec().isEqual(value.getHeaderRec()))
     {
         return(false);
     }
     return(true);
 }
Beispiel #3
0
            public JAUSApplicationLayerHeader(JAUSApplicationLayerHeader value)
            {
                /// Initiliaze the protected variables
                m_HeaderRec = new HeaderRec();
                m_HeaderRec.setParent(this);

                /// Copy the values
                m_HeaderRec = value.getHeaderRec();
                m_HeaderRec.setParent(this);
            }