( parm, formatter )
| 95 | formatter.unindent() |
| 96 | |
| 97 | def __formatDirNameParameter( parm, formatter ) : |
| 98 | |
| 99 | __formatParameter( parm, formatter ) |
| 100 | formatter.indent() |
| 101 | |
| 102 | if parm.mustExist : |
| 103 | formatter.paragraph( "Directory must exist" ) |
| 104 | |
| 105 | if parm.mustNotExist : |
| 106 | formatter.paragraph( "Directory must not exist" ) |
| 107 | |
| 108 | if not parm.allowEmptyString : |
| 109 | formatter.paragraph( "Directory must be specified" ) |
| 110 | |
| 111 | formatter.unindent() |
| 112 | |
| 113 | def __formatFileSequenceParameter( parm, formatter ) : |
| 114 |
nothing calls this directly
no test coverage detected