String representation
()
| 453 | |
| 454 | /** String representation */ |
| 455 | @Override |
| 456 | public String toString() { |
| 457 | try{ |
| 458 | return "Parameter: name="+ name+ "; valueString=" + typeName + |
| 459 | "; optional=" + optional + |
| 460 | "; defaultValueString=" + defaultValueString + |
| 461 | "; defaultValue=" + getDefaultValue() + "; comment=" + |
| 462 | comment + "; helpURL=" + |
| 463 | helpURL + "; runtime=" + runtime + |
| 464 | "; itemClassName=" + itemClassName + |
| 465 | "; suffixes=" + suffixes; |
| 466 | }catch(ParameterException pe){ |
| 467 | throw new GateRuntimeException(pe.toString()); |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | /** |
| 472 | * If this parameter is a List type this will return the type of the items |
nothing calls this directly
no test coverage detected