--------------------------------------------------------------------
| 47 | |
| 48 | // -------------------------------------------------------------------- |
| 49 | void G4UIcmdWithAnInteger::SetParameterName(const char* theName, G4bool omittable, |
| 50 | G4bool currentAsDefault) |
| 51 | { |
| 52 | G4UIparameter* theParam = GetParameter(0); |
| 53 | theParam->SetParameterName(theName); |
| 54 | theParam->SetOmittable(omittable); |
| 55 | theParam->SetCurrentAsDefault(currentAsDefault); |
| 56 | } |
| 57 | |
| 58 | // -------------------------------------------------------------------- |
| 59 | void G4UIcmdWithAnInteger::SetDefaultValue(G4int defVal) |
nothing calls this directly
no test coverage detected