public void setType(acceptor.meaning_type v)
 {
     aType = v;
       __setDirty(true);
       NotifyControllers(null);
 }
 public bool setType_AsString( string  v)
 {
     acceptor.meaning_type  temp = acceptor.StringTo_Enum_meaning_type(v);
     if (temp >= 0){
       aType = temp;
       __setDirty(true);
       NotifyControllers(null);
       return true;
     } // If
     return false;
 }
 public meaning()
 {
     meaning obj = this;
     aType=(0);
     aBl=(null);
     aValue=(null);
 }