public interface UntargetableComponent
@child(n)
, @next
and @previous
.
If you suppose this case, markup/literal components must implement UntargetableComponent
:
<table> <tr> <td> <h:outputLabel for="@next" value="Name:" /> </td> <td> <h:inputText id="input" value="#{bean.name} /> </td> </tr> </table>
@next
would otherwise actually target the markup:
</td> <td>and not desired component:
<h:inputText id="input" value="#{bean.name} />
Copyright © 2019 Eclipse Foundation.
Use is subject to license terms.