[English] [Japanese]

Back

HapoItak jsp Auto-Completion

The following list is shown to input which is 'jsf' by auto-completion.

  1. jsf_if_a=b
  2. jsf_if_a=b_else
  3. jsf_hidden
  4. jsf_commandButton
  5. jsf_outputText

Example 1.

For example, 'jsf_if_a=b' expression is expanded into:

<c:if test='${$1 == "$2"}'>
$3
</c:if>

Example 2.

For example, 'jsf_if_a=b_else' expression is expanded into:

<c:if test='${$1 == "$2"}'>
$3
</c:if>
<c:if test='${$4 != "$5"}'>
$6
</c:if>