Given the excerpt from my file .xhtml
:
<h:panelGrid id="camposPesquisa" columns="2">
<h:outputLabel value="#{msg['nome']}: " />
<p:inputText value="#{naturemb.arg}" />
</h:panelGrid>
<h:panelGrid id="botoes" columns="2" styleClass="botoesCrud">
<p:commandButton actionListener="#{naturemb.pesquisar}"
value="#{msg['pesquisar']}" ajax="false"
update="cadastro,pesquisa" />
<p:commandButton actionListener="#{naturemb.novo}"
value="#{msg['novo']}" ajax="false" update="cadastro"
styleClass="separadorBotoes" />
</h:panelGrid>
Note that when indenting Eclipse , there are many line breaks in the attributes. How can I configure so that I do not break so much of a line?
Ex: 5 attributes on the same line, etc?