( parm, formatter )
| 111 | formatter.unindent() |
| 112 | |
| 113 | def __formatFileSequenceParameter( parm, formatter ) : |
| 114 | |
| 115 | __formatParameter( parm, formatter ) |
| 116 | formatter.indent() |
| 117 | |
| 118 | if parm.mustExist : |
| 119 | formatter.paragraph( "Sequence must exist" ) |
| 120 | |
| 121 | if parm.mustNotExist : |
| 122 | formatter.paragraph( "Sequence must not exist" ) |
| 123 | |
| 124 | if not parm.allowEmptyString : |
| 125 | formatter.paragraph( "Sequence must be specified" ) |
| 126 | |
| 127 | formatter.paragraph( "Values must be of the form \"something.###.ext\"" ) |
| 128 | |
| 129 | formatter.unindent() |
| 130 | |
| 131 | def __formatCompoundParameter( parm, formatter ) : |
| 132 |
nothing calls this directly
no test coverage detected