There seems to be a problem with the formatting of XML documents (or perhaps my understanding of how it should work).
I have the “Split multiple attributes each on a new line” feature enabled, yet attributes are sharing the line. for instance:
<cache name="cacheName" maxElementsInMemory="10000" eternal="false" timeToLiveSeconds="300" overflowToDisk="false" />
becomes
<cache name="cacheName" maxElementsInMemory="10000" eternal="false"
timeToLiveSeconds="300" overflowToDisk="false" />
I have the same feature enabled in the Ant editor and that line gets formatted to:
<cache name="cacheName"
maxElementsInMemory="10000"
eternal="false"
timeToLiveSeconds="300"
overflowToDisk="false" />
This is what I expect for each attribute to be on its own line. Is it me or MyEclipse?
I’m running Eclipse 3.1 with MyEclipse 3.9.210.
Thanks in advance.