aboutsummaryrefslogtreecommitdiff
path: root/test/testdata/input_template_test/func.vm
blob: 80ef25cb32e38a74d95b341652b2cd731e3f591b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<a name="#${funcInfo.functionName}"></a>

#[[##]]# ${funcInfo.functionName}

<pre>
${util.funcSummary($funcInfo)}
</pre>

${funcInfo.docString}

<b>input_template_test BOLD PARAMETERS</b>

#if (!$funcInfo.getParameterList().isEmpty())
#[[###]]# Parameters

#foreach ($param in $funcInfo.getParameterList())
<b>
      <code>${param.name}</code>
        ${util.mandatoryString($param)}.#if(!$param.getDefaultValue().isEmpty()) default is
        <code>$param.getDefaultValue()</code>
        </b>
        #end
#if (!$param.docString.isEmpty())
        <p>
          ${param.docString.trim()}
        </p>
#end
#end
#end