public void setMaximum(acceptor.maximum_Value v)
 {
     aMaximum = v;
       __setDirty(true);
       NotifyControllers(null);
 }
 public bool setMaximum_AsString( string  v)
 {
     acceptor.maximum_Value  temp = acceptor.StringTo_Enum_maximum_Value(v);
     if (temp >= 0){
       aMaximum = temp;
       __setDirty(true);
       NotifyControllers(null);
       return true;
     } // If
     return false;
 }
 public match_range()
 {
     match_range obj = this;
     aMinimum=(null);
     aMaximum=(0);
 }