--------------------------------------------------------------------
| 41 | |
| 42 | // -------------------------------------------------------------------- |
| 43 | void G4UIcmdWithAString::SetParameterName(const char* theName, G4bool omittable, |
| 44 | G4bool currentAsDefault) |
| 45 | { |
| 46 | G4UIparameter* theParam = GetParameter(0); |
| 47 | theParam->SetParameterName(theName); |
| 48 | theParam->SetOmittable(omittable); |
| 49 | theParam->SetCurrentAsDefault(currentAsDefault); |
| 50 | } |
| 51 | |
| 52 | // -------------------------------------------------------------------- |
| 53 | void G4UIcmdWithAString::SetCandidates(const char* candidateList) |
nothing calls this directly
no test coverage detected