StatechartTools.setup 161 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <setup:Project
  3. xmi:version="2.0"
  4. xmlns:xmi="http://www.omg.org/XMI"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xmlns:git="http://www.eclipse.org/oomph/setup/git/1.0"
  7. xmlns:jdt="http://www.eclipse.org/oomph/setup/jdt/1.0"
  8. xmlns:launching="http://www.eclipse.org/oomph/setup/launching/1.0"
  9. xmlns:pde="http://www.eclipse.org/oomph/setup/pde/1.0"
  10. xmlns:predicates="http://www.eclipse.org/oomph/predicates/1.0"
  11. xmlns:projects="http://www.eclipse.org/oomph/setup/projects/1.0"
  12. xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
  13. xmlns:setup.p2="http://www.eclipse.org/oomph/setup/p2/1.0"
  14. xmlns:setup.workingsets="http://www.eclipse.org/oomph/setup/workingsets/1.0"
  15. xsi:schemaLocation="http://www.eclipse.org/oomph/setup/git/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Git.ecore http://www.eclipse.org/oomph/setup/jdt/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/JDT.ecore http://www.eclipse.org/oomph/setup/launching/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Launching.ecore http://www.eclipse.org/oomph/setup/pde/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/PDE.ecore http://www.eclipse.org/oomph/predicates/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Predicates.ecore http://www.eclipse.org/oomph/setup/projects/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/Projects.ecore http://www.eclipse.org/oomph/setup/workingsets/1.0 http://git.eclipse.org/c/oomph/org.eclipse.oomph.git/plain/setups/models/SetupWorkingSets.ecore"
  16. name="sct"
  17. label="Statechart Tools">
  18. <setupTask
  19. xsi:type="jdt:JRETask"
  20. version="JavaSE-1.7"
  21. location="${jre.location-1.7}">
  22. <description>Define the JRE needed to compile and run the Java projects of ${scope.project.label}</description>
  23. </setupTask>
  24. <setupTask
  25. xsi:type="setup:EclipseIniTask"
  26. option="-Xmx"
  27. value="2048m"
  28. vm="true">
  29. <description>Set the heap space needed to work with the projects of ${scope.project.label}</description>
  30. </setupTask>
  31. <setupTask
  32. xsi:type="setup:EclipseIniTask"
  33. option="-XX:MaxPermSize="
  34. value="256m"
  35. vm="true"/>
  36. <setupTask
  37. xsi:type="setup:ResourceCreationTask"
  38. excludedTriggers="STARTUP MANUAL"
  39. content="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?>&#xD;&#xA;&lt;section name=&quot;Workbench&quot;>&#xD;&#xA;&#x9;&lt;section name=&quot;org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart&quot;>&#xD;&#xA;&#x9;&#x9;&lt;item value=&quot;true&quot; key=&quot;group_libraries&quot;/>&#xD;&#xA;&#x9;&#x9;&lt;item value=&quot;false&quot; key=&quot;linkWithEditor&quot;/>&#xD;&#xA;&#x9;&#x9;&lt;item value=&quot;2&quot; key=&quot;layout&quot;/>&#xD;&#xA;&#x9;&#x9;&lt;item value=&quot;2&quot; key=&quot;rootMode&quot;/>&#xD;&#xA;&#x9;&#x9;&lt;item value=&quot;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&amp;#x0D;&amp;#x0A;&amp;lt;packageExplorer configured=&amp;quot;true&amp;quot; group_libraries=&amp;quot;1&amp;quot; layout=&amp;quot;2&amp;quot; linkWithEditor=&amp;quot;0&amp;quot; rootMode=&amp;quot;2&amp;quot; sortWorkingSets=&amp;quot;false&amp;quot; workingSetName=&amp;quot;&amp;quot;&amp;gt;&amp;#x0D;&amp;#x0A;&amp;lt;localWorkingSetManager&amp;gt;&amp;#x0D;&amp;#x0A;&amp;lt;workingSet editPageId=&amp;quot;org.eclipse.jdt.internal.ui.OthersWorkingSet&amp;quot; factoryID=&amp;quot;org.eclipse.ui.internal.WorkingSetFactory&amp;quot; id=&amp;quot;1382792884467_1&amp;quot; label=&amp;quot;Other Projects&amp;quot; name=&amp;quot;Other Projects&amp;quot;/&amp;gt;&amp;#x0D;&amp;#x0A;&amp;lt;/localWorkingSetManager&amp;gt;&amp;#x0D;&amp;#x0A;&amp;lt;activeWorkingSet workingSetName=&amp;quot;Other Projects&amp;quot;/&amp;gt;&amp;#x0D;&amp;#x0A;&amp;lt;allWorkingSets workingSetName=&amp;quot;Other Projects&amp;quot;/&amp;gt;&amp;#x0D;&amp;#x0A;&amp;lt;/packageExplorer&amp;gt;&quot; key=&quot;memento&quot;/>&#xD;&#xA;&#x9;&lt;/section>&#xD;&#xA;&lt;/section>&#xD;&#xA;"
  40. targetURL="${workspace.location|uri}/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml"
  41. encoding="UTF-8">
  42. <description>Initialize JDT's package explorer to show working sets as its root objects</description>
  43. </setupTask>
  44. <setupTask
  45. xsi:type="setup:VariableTask"
  46. name="eclipse.target.platform"
  47. defaultValue="Mars"
  48. storageURI="scope://Workspace">
  49. <description>xx</description>
  50. </setupTask>
  51. <setupTask
  52. xsi:type="setup.p2:P2Task">
  53. <requirement
  54. name="org.eclipse.emf.sdk.feature.group"/>
  55. <requirement
  56. name="org.eclipse.oomph.version.feature.group"/>
  57. <requirement
  58. name="org.eclipse.oomph.launches.feature.group"/>
  59. <requirement
  60. name="org.eclipse.oomph.manifests.feature.group"/>
  61. <requirement
  62. name="org.eclipse.oomph.projectconfig.feature.group"/>
  63. <requirement
  64. name="org.eclipse.oomph.projectcopy.feature.group"/>
  65. <requirement
  66. name="org.eclipse.oomph.workingsets.feature.group"/>
  67. <requirement
  68. name="org.eclipse.oomph.setup.feature.group"/>
  69. <requirement
  70. name="org.eclipse.xtext.sdk.feature.group"/>
  71. <requirement
  72. name="org.eclipse.team.svn.feature.group"/>
  73. <requirement
  74. name="org.eclipse.m2e.feature.feature.group"/>
  75. <repository
  76. url="${oomph.update.url}"/>
  77. <description>Install the tools needed in the IDE to work with the source code for ${scope.project.label}</description>
  78. </setupTask>
  79. <setupTask
  80. xsi:type="git:GitCloneTask"
  81. id="git.clone.statechart"
  82. remoteURI="https://github.com/Yakindu/statecharts.git">
  83. <description>${scope.project.label}</description>
  84. </setupTask>
  85. <setupTask
  86. xsi:type="setup.workingsets:WorkingSetTask">
  87. <workingSet
  88. name="${scope.project.name}">
  89. <predicate
  90. xsi:type="predicates:AndPredicate">
  91. <operand
  92. xsi:type="predicates:RepositoryPredicate"
  93. project="org.yakindu.sct-feature"/>
  94. </predicate>
  95. </workingSet>
  96. <description>The dynamic working sets for ${scope.project.label}</description>
  97. <setupTask
  98. xsi:type="pde:TargetPlatformTask"
  99. excludedTriggers="STARTUP"
  100. name="${target_definition}"/>
  101. </setupTask>
  102. <setupTask
  103. xsi:type="setup:VariableTask"
  104. name="target_definition"
  105. value="Mars (SCT)"
  106. label="Target definition">
  107. <description>Target definition id</description>
  108. </setupTask>
  109. <setupTask
  110. xsi:type="projects:ProjectsImportTask">
  111. <sourceLocator
  112. rootFolder="${git.clone.statechart.location}"
  113. locateNestedProjects="true"/>
  114. </setupTask>
  115. <setupTask
  116. xsi:type="pde:TargetPlatformTask"
  117. name="${target_definition}"/>
  118. <setupTask
  119. xsi:type="setup:CompoundTask"
  120. name="User Preferences">
  121. <annotation
  122. source="http://www.eclipse.org/oomph/setup/UserPreferences">
  123. <detail
  124. key="/instance/org.eclipse.jdt.launching/org.eclipse.jdt.launching.PREF_VM_XML">
  125. <value>ignore</value>
  126. </detail>
  127. <detail
  128. key="/instance/org.eclipse.ui.trace/tracingFilePath">
  129. <value>ignore</value>
  130. </detail>
  131. <detail
  132. key="/instance/org.eclipse.jdt.launching/org.eclipse.jdt.launching.PREF_DEFAULT_ENVIRONMENTS_XML">
  133. <value>ignore</value>
  134. </detail>
  135. <detail
  136. key="/instance/org.eclipse.ui.ide/WORKSPACE_NAME">
  137. <value>ignore</value>
  138. </detail>
  139. <detail
  140. key="/instance/org.eclipse.mylyn.team.ui/org.eclipse.mylyn.team.commit.template">
  141. <value>ignore</value>
  142. </detail>
  143. <detail
  144. key="/instance/org.eclipse.linuxtools.rpm.ui.editor/rpmLisMastBuild">
  145. <value>ignore</value>
  146. </detail>
  147. <detail
  148. key="/instance/org.eclipse.mylyn.tasks.ui/org.eclipse.mylyn.data.dir">
  149. <value>ignore</value>
  150. </detail>
  151. <detail
  152. key="/instance/org.eclipse.ui.trace/tracingEntries">
  153. <value>ignore</value>
  154. </detail>
  155. <detail
  156. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.JRE_SRCROOT">
  157. <value>ignore</value>
  158. </detail>
  159. <detail
  160. key="/instance/org.eclipse.ui.monitoring/noninteresting_thread_filter">
  161. <value>ignore</value>
  162. </detail>
  163. <detail
  164. key="/instance/org.eclipse.ui.workbench/PLUGINS_NOT_ACTIVATED_ON_STARTUP">
  165. <value>ignore</value>
  166. </detail>
  167. <detail
  168. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.JRE_LIB">
  169. <value>ignore</value>
  170. </detail>
  171. <detail
  172. key="/instance/org.eclipse.pde.core/workspace_target_handle">
  173. <value>ignore</value>
  174. </detail>
  175. <detail
  176. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.JRE_SRC">
  177. <value>ignore</value>
  178. </detail>
  179. <detail
  180. key="/instance/org.eclipse.search/org.eclipse.search.defaultPerspective">
  181. <value>ignore</value>
  182. </detail>
  183. <detail
  184. key="/instance/org.eclipse.oomph.setup.ui/showToolBarContributions">
  185. <value>record</value>
  186. </detail>
  187. <detail
  188. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch">
  189. <value>record</value>
  190. </detail>
  191. <detail
  192. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration">
  193. <value>record</value>
  194. </detail>
  195. <detail
  196. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer">
  197. <value>record</value>
  198. </detail>
  199. <detail
  200. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer">
  201. <value>record</value>
  202. </detail>
  203. <detail
  204. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case">
  205. <value>record</value>
  206. </detail>
  207. <detail
  208. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement">
  209. <value>record</value>
  210. </detail>
  211. <detail
  212. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_after_package">
  213. <value>record</value>
  214. </detail>
  215. <detail
  216. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration">
  217. <value>record</value>
  218. </detail>
  219. <detail
  220. key="/instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.formatterprofiles">
  221. <value>record</value>
  222. </detail>
  223. <detail
  224. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_member_type">
  225. <value>record</value>
  226. </detail>
  227. <detail
  228. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default">
  229. <value>record</value>
  230. </detail>
  231. <detail
  232. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_method">
  233. <value>record</value>
  234. </detail>
  235. <detail
  236. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations">
  237. <value>record</value>
  238. </detail>
  239. <detail
  240. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration">
  241. <value>record</value>
  242. </detail>
  243. <detail
  244. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk">
  245. <value>record</value>
  246. </detail>
  247. <detail
  248. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_conditional_expression">
  249. <value>record</value>
  250. </detail>
  251. <detail
  252. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer">
  253. <value>record</value>
  254. </detail>
  255. <detail
  256. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_after_imports">
  257. <value>record</value>
  258. </detail>
  259. <detail
  260. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line">
  261. <value>record</value>
  262. </detail>
  263. <detail
  264. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_imports">
  265. <value>record</value>
  266. </detail>
  267. <detail
  268. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_compact_if">
  269. <value>record</value>
  270. </detail>
  271. <detail
  272. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try">
  273. <value>record</value>
  274. </detail>
  275. <detail
  276. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line">
  277. <value>record</value>
  278. </detail>
  279. <detail
  280. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line">
  281. <value>record</value>
  282. </detail>
  283. <detail
  284. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference">
  285. <value>record</value>
  286. </detail>
  287. <detail
  288. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator">
  289. <value>record</value>
  290. </detail>
  291. <detail
  292. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch">
  293. <value>record</value>
  294. </detail>
  295. <detail
  296. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant">
  297. <value>record</value>
  298. </detail>
  299. <detail
  300. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw">
  301. <value>record</value>
  302. </detail>
  303. <detail
  304. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator">
  305. <value>record</value>
  306. </detail>
  307. <detail
  308. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression">
  309. <value>record</value>
  310. </detail>
  311. <detail
  312. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement">
  313. <value>record</value>
  314. </detail>
  315. <detail
  316. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations">
  317. <value>record</value>
  318. </detail>
  319. <detail
  320. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_header">
  321. <value>record</value>
  322. </detail>
  323. <detail
  324. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_label">
  325. <value>record</value>
  326. </detail>
  327. <detail
  328. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration">
  329. <value>record</value>
  330. </detail>
  331. <detail
  332. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration">
  333. <value>record</value>
  334. </detail>
  335. <detail
  336. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant">
  337. <value>record</value>
  338. </detail>
  339. <detail
  340. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for">
  341. <value>record</value>
  342. </detail>
  343. <detail
  344. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.tabulation.size">
  345. <value>record</value>
  346. </detail>
  347. <detail
  348. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow">
  349. <value>record</value>
  350. </detail>
  351. <detail
  352. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer">
  353. <value>record</value>
  354. </detail>
  355. <detail
  356. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert">
  357. <value>record</value>
  358. </detail>
  359. <detail
  360. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_switch">
  361. <value>record</value>
  362. </detail>
  363. <detail
  364. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable">
  365. <value>record</value>
  366. </detail>
  367. <detail
  368. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_statements_compare_to_body">
  369. <value>record</value>
  370. </detail>
  371. <detail
  372. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested">
  373. <value>record</value>
  374. </detail>
  375. <detail
  376. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_before_binary_operator">
  377. <value>record</value>
  378. </detail>
  379. <detail
  380. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return">
  381. <value>record</value>
  382. </detail>
  383. <detail
  384. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_type_declaration">
  385. <value>record</value>
  386. </detail>
  387. <detail
  388. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer">
  389. <value>record</value>
  390. </detail>
  391. <detail
  392. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body">
  393. <value>record</value>
  394. </detail>
  395. <detail
  396. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized">
  397. <value>record</value>
  398. </detail>
  399. <detail
  400. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for">
  401. <value>record</value>
  402. </detail>
  403. <detail
  404. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration">
  405. <value>record</value>
  406. </detail>
  407. <detail
  408. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation">
  409. <value>record</value>
  410. </detail>
  411. <detail
  412. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources">
  413. <value>record</value>
  414. </detail>
  415. <detail
  416. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration">
  417. <value>record</value>
  418. </detail>
  419. <detail
  420. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line">
  421. <value>record</value>
  422. </detail>
  423. <detail
  424. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_unary_operator">
  425. <value>record</value>
  426. </detail>
  427. <detail
  428. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer">
  429. <value>record</value>
  430. </detail>
  431. <detail
  432. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration">
  433. <value>record</value>
  434. </detail>
  435. <detail
  436. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation">
  437. <value>record</value>
  438. </detail>
  439. <detail
  440. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters">
  441. <value>record</value>
  442. </detail>
  443. <detail
  444. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration">
  445. <value>record</value>
  446. </detail>
  447. <detail
  448. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for">
  449. <value>record</value>
  450. </detail>
  451. <detail
  452. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator">
  453. <value>record</value>
  454. </detail>
  455. <detail
  456. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression">
  457. <value>record</value>
  458. </detail>
  459. <detail
  460. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters">
  461. <value>record</value>
  462. </detail>
  463. <detail
  464. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws">
  465. <value>record</value>
  466. </detail>
  467. <detail
  468. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant">
  469. <value>record</value>
  470. </detail>
  471. <detail
  472. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator">
  473. <value>record</value>
  474. </detail>
  475. <detail
  476. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration">
  477. <value>record</value>
  478. </detail>
  479. <detail
  480. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.line_length">
  481. <value>record</value>
  482. </detail>
  483. <detail
  484. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch">
  485. <value>record</value>
  486. </detail>
  487. <detail
  488. key="/instance/org.eclipse.core.resources/description.autobuilding">
  489. <value>record</value>
  490. </detail>
  491. <detail
  492. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations">
  493. <value>record</value>
  494. </detail>
  495. <detail
  496. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column">
  497. <value>record</value>
  498. </detail>
  499. <detail
  500. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.indent_parameter_description">
  501. <value>record</value>
  502. </detail>
  503. <detail
  504. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_enum_constants">
  505. <value>record</value>
  506. </detail>
  507. <detail
  508. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments">
  509. <value>record</value>
  510. </detail>
  511. <detail
  512. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter">
  513. <value>record</value>
  514. </detail>
  515. <detail
  516. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration">
  517. <value>record</value>
  518. </detail>
  519. <detail
  520. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_line_comments">
  521. <value>record</value>
  522. </detail>
  523. <detail
  524. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body">
  525. <value>record</value>
  526. </detail>
  527. <detail
  528. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch">
  529. <value>record</value>
  530. </detail>
  531. <detail
  532. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources">
  533. <value>record</value>
  534. </detail>
  535. <detail
  536. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert">
  537. <value>record</value>
  538. </detail>
  539. <detail
  540. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional">
  541. <value>record</value>
  542. </detail>
  543. <detail
  544. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration">
  545. <value>record</value>
  546. </detail>
  547. <detail
  548. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_block">
  549. <value>record</value>
  550. </detail>
  551. <detail
  552. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_source_code">
  553. <value>record</value>
  554. </detail>
  555. <detail
  556. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference">
  557. <value>record</value>
  558. </detail>
  559. <detail
  560. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments">
  561. <value>record</value>
  562. </detail>
  563. <detail
  564. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments">
  565. <value>record</value>
  566. </detail>
  567. <detail
  568. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant">
  569. <value>record</value>
  570. </detail>
  571. <detail
  572. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation">
  573. <value>record</value>
  574. </detail>
  575. <detail
  576. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch">
  577. <value>record</value>
  578. </detail>
  579. <detail
  580. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator">
  581. <value>record</value>
  582. </detail>
  583. <detail
  584. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.align_type_members_on_columns">
  585. <value>record</value>
  586. </detail>
  587. <detail
  588. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration">
  589. <value>record</value>
  590. </detail>
  591. <detail
  592. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation">
  593. <value>record</value>
  594. </detail>
  595. <detail
  596. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block">
  597. <value>record</value>
  598. </detail>
  599. <detail
  600. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression">
  601. <value>record</value>
  602. </detail>
  603. <detail
  604. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type">
  605. <value>record</value>
  606. </detail>
  607. <detail
  608. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_multiple_fields">
  609. <value>record</value>
  610. </detail>
  611. <detail
  612. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters">
  613. <value>record</value>
  614. </detail>
  615. <detail
  616. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant">
  617. <value>record</value>
  618. </detail>
  619. <detail
  620. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for">
  621. <value>record</value>
  622. </detail>
  623. <detail
  624. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column">
  625. <value>record</value>
  626. </detail>
  627. <detail
  628. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces">
  629. <value>record</value>
  630. </detail>
  631. <detail
  632. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference">
  633. <value>record</value>
  634. </detail>
  635. <detail
  636. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement">
  637. <value>record</value>
  638. </detail>
  639. <detail
  640. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.lineSplit">
  641. <value>record</value>
  642. </detail>
  643. <detail
  644. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_lambda_body">
  645. <value>record</value>
  646. </detail>
  647. <detail
  648. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments">
  649. <value>record</value>
  650. </detail>
  651. <detail
  652. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_binary_operator">
  653. <value>record</value>
  654. </detail>
  655. <detail
  656. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_empty_lines">
  657. <value>record</value>
  658. </detail>
  659. <detail
  660. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter">
  661. <value>record</value>
  662. </detail>
  663. <detail
  664. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.use_on_off_tags">
  665. <value>record</value>
  666. </detail>
  667. <detail
  668. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration">
  669. <value>record</value>
  670. </detail>
  671. <detail
  672. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.disabling_tag">
  673. <value>record</value>
  674. </detail>
  675. <detail
  676. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration">
  677. <value>record</value>
  678. </detail>
  679. <detail
  680. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries">
  681. <value>record</value>
  682. </detail>
  683. <detail
  684. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer">
  685. <value>record</value>
  686. </detail>
  687. <detail
  688. key="/instance/org.eclipse.jdt.ui/formatter_settings_version">
  689. <value>record</value>
  690. </detail>
  691. <detail
  692. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while">
  693. <value>record</value>
  694. </detail>
  695. <detail
  696. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments">
  697. <value>record</value>
  698. </detail>
  699. <detail
  700. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags">
  701. <value>record</value>
  702. </detail>
  703. <detail
  704. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call">
  705. <value>record</value>
  706. </detail>
  707. <detail
  708. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.join_lines_in_comments">
  709. <value>record</value>
  710. </detail>
  711. <detail
  712. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws">
  713. <value>record</value>
  714. </detail>
  715. <detail
  716. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.enabling_tag">
  717. <value>record</value>
  718. </detail>
  719. <detail
  720. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional">
  721. <value>record</value>
  722. </detail>
  723. <detail
  724. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if">
  725. <value>record</value>
  726. </detail>
  727. <detail
  728. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations">
  729. <value>record</value>
  730. </detail>
  731. <detail
  732. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference">
  733. <value>record</value>
  734. </detail>
  735. <detail
  736. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_block_comments">
  737. <value>record</value>
  738. </detail>
  739. <detail
  740. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations">
  741. <value>record</value>
  742. </detail>
  743. <detail
  744. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_package">
  745. <value>record</value>
  746. </detail>
  747. <detail
  748. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.join_wrapped_lines">
  749. <value>record</value>
  750. </detail>
  751. <detail
  752. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header">
  753. <value>record</value>
  754. </detail>
  755. <detail
  756. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method">
  757. <value>record</value>
  758. </detail>
  759. <detail
  760. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries">
  761. <value>record</value>
  762. </detail>
  763. <detail
  764. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard">
  765. <value>record</value>
  766. </detail>
  767. <detail
  768. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression">
  769. <value>record</value>
  770. </detail>
  771. <detail
  772. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters">
  773. <value>record</value>
  774. </detail>
  775. <detail
  776. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement">
  777. <value>record</value>
  778. </detail>
  779. <detail
  780. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations">
  781. <value>record</value>
  782. </detail>
  783. <detail
  784. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while">
  785. <value>record</value>
  786. </detail>
  787. <detail
  788. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if">
  789. <value>record</value>
  790. </detail>
  791. <detail
  792. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration">
  793. <value>record</value>
  794. </detail>
  795. <detail
  796. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant">
  797. <value>record</value>
  798. </detail>
  799. <detail
  800. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws">
  801. <value>record</value>
  802. </detail>
  803. <detail
  804. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression">
  805. <value>record</value>
  806. </detail>
  807. <detail
  808. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation">
  809. <value>record</value>
  810. </detail>
  811. <detail
  812. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration">
  813. <value>record</value>
  814. </detail>
  815. <detail
  816. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_between_import_groups">
  817. <value>record</value>
  818. </detail>
  819. <detail
  820. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.compact_else_if">
  821. <value>record</value>
  822. </detail>
  823. <detail
  824. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer">
  825. <value>record</value>
  826. </detail>
  827. <detail
  828. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments">
  829. <value>record</value>
  830. </detail>
  831. <detail
  832. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if">
  833. <value>record</value>
  834. </detail>
  835. <detail
  836. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast">
  837. <value>record</value>
  838. </detail>
  839. <detail
  840. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression">
  841. <value>record</value>
  842. </detail>
  843. <detail
  844. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header">
  845. <value>record</value>
  846. </detail>
  847. <detail
  848. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for">
  849. <value>record</value>
  850. </detail>
  851. <detail
  852. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized">
  853. <value>record</value>
  854. </detail>
  855. <detail
  856. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for">
  857. <value>record</value>
  858. </detail>
  859. <detail
  860. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference">
  861. <value>record</value>
  862. </detail>
  863. <detail
  864. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized">
  865. <value>record</value>
  866. </detail>
  867. <detail
  868. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.tabulation.char">
  869. <value>record</value>
  870. </detail>
  871. <detail
  872. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference">
  873. <value>record</value>
  874. </detail>
  875. <detail
  876. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits">
  877. <value>record</value>
  878. </detail>
  879. <detail
  880. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces">
  881. <value>record</value>
  882. </detail>
  883. <detail
  884. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration">
  885. <value>record</value>
  886. </detail>
  887. <detail
  888. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional">
  889. <value>record</value>
  890. </detail>
  891. <detail
  892. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_method_declaration">
  893. <value>record</value>
  894. </detail>
  895. <detail
  896. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case">
  897. <value>record</value>
  898. </detail>
  899. <detail
  900. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration">
  901. <value>record</value>
  902. </detail>
  903. <detail
  904. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations">
  905. <value>record</value>
  906. </detail>
  907. <detail
  908. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard">
  909. <value>record</value>
  910. </detail>
  911. <detail
  912. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_javadoc_comments">
  913. <value>record</value>
  914. </detail>
  915. <detail
  916. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration">
  917. <value>record</value>
  918. </detail>
  919. <detail
  920. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration">
  921. <value>record</value>
  922. </detail>
  923. <detail
  924. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration">
  925. <value>record</value>
  926. </detail>
  927. <detail
  928. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line">
  929. <value>record</value>
  930. </detail>
  931. <detail
  932. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_statements_compare_to_block">
  933. <value>record</value>
  934. </detail>
  935. <detail
  936. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column">
  937. <value>record</value>
  938. </detail>
  939. <detail
  940. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference">
  941. <value>record</value>
  942. </detail>
  943. <detail
  944. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_array_initializer">
  945. <value>record</value>
  946. </detail>
  947. <detail
  948. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow">
  949. <value>record</value>
  950. </detail>
  951. <detail
  952. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch">
  953. <value>record</value>
  954. </detail>
  955. <detail
  956. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments">
  957. <value>record</value>
  958. </detail>
  959. <detail
  960. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference">
  961. <value>record</value>
  962. </detail>
  963. <detail
  964. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter">
  965. <value>record</value>
  966. </detail>
  967. <detail
  968. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter">
  969. <value>record</value>
  970. </detail>
  971. <detail
  972. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration">
  973. <value>record</value>
  974. </detail>
  975. <detail
  976. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_binary_expression">
  977. <value>record</value>
  978. </detail>
  979. <detail
  980. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_field">
  981. <value>record</value>
  982. </detail>
  983. <detail
  984. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field">
  985. <value>record</value>
  986. </detail>
  987. <detail
  988. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_assignment">
  989. <value>record</value>
  990. </detail>
  991. <detail
  992. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast">
  993. <value>record</value>
  994. </detail>
  995. <detail
  996. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation">
  997. <value>record</value>
  998. </detail>
  999. <detail
  1000. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration">
  1001. <value>record</value>
  1002. </detail>
  1003. <detail
  1004. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment">
  1005. <value>record</value>
  1006. </detail>
  1007. <detail
  1008. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_ellipsis">
  1009. <value>record</value>
  1010. </detail>
  1011. <detail
  1012. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration">
  1013. <value>record</value>
  1014. </detail>
  1015. <detail
  1016. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments">
  1017. <value>record</value>
  1018. </detail>
  1019. <detail
  1020. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws">
  1021. <value>record</value>
  1022. </detail>
  1023. <detail
  1024. key="/instance/org.eclipse.jdt.ui/formatter_profile">
  1025. <value>record</value>
  1026. </detail>
  1027. <detail
  1028. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations">
  1029. <value>record</value>
  1030. </detail>
  1031. <detail
  1032. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_block_in_case">
  1033. <value>record</value>
  1034. </detail>
  1035. <detail
  1036. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch">
  1037. <value>record</value>
  1038. </detail>
  1039. <detail
  1040. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration">
  1041. <value>record</value>
  1042. </detail>
  1043. <detail
  1044. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters">
  1045. <value>record</value>
  1046. </detail>
  1047. <detail
  1048. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation">
  1049. <value>record</value>
  1050. </detail>
  1051. <detail
  1052. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments">
  1053. <value>record</value>
  1054. </detail>
  1055. <detail
  1056. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression">
  1057. <value>record</value>
  1058. </detail>
  1059. <detail
  1060. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters">
  1061. <value>record</value>
  1062. </detail>
  1063. <detail
  1064. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments">
  1065. <value>record</value>
  1066. </detail>
  1067. <detail
  1068. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional">
  1069. <value>record</value>
  1070. </detail>
  1071. <detail
  1072. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch">
  1073. <value>record</value>
  1074. </detail>
  1075. <detail
  1076. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation">
  1077. <value>record</value>
  1078. </detail>
  1079. <detail
  1080. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_html">
  1081. <value>record</value>
  1082. </detail>
  1083. <detail
  1084. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters">
  1085. <value>record</value>
  1086. </detail>
  1087. <detail
  1088. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits">
  1089. <value>record</value>
  1090. </detail>
  1091. <detail
  1092. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration">
  1093. <value>record</value>
  1094. </detail>
  1095. <detail
  1096. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation">
  1097. <value>record</value>
  1098. </detail>
  1099. <detail
  1100. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters">
  1101. <value>record</value>
  1102. </detail>
  1103. <detail
  1104. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast">
  1105. <value>record</value>
  1106. </detail>
  1107. <detail
  1108. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference">
  1109. <value>record</value>
  1110. </detail>
  1111. <detail
  1112. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration">
  1113. <value>record</value>
  1114. </detail>
  1115. <detail
  1116. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch">
  1117. <value>record</value>
  1118. </detail>
  1119. <detail
  1120. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer">
  1121. <value>record</value>
  1122. </detail>
  1123. <detail
  1124. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant">
  1125. <value>record</value>
  1126. </detail>
  1127. <detail
  1128. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package">
  1129. <value>record</value>
  1130. </detail>
  1131. <detail
  1132. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_method_declaration">
  1133. <value>record</value>
  1134. </detail>
  1135. <detail
  1136. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression">
  1137. <value>record</value>
  1138. </detail>
  1139. <detail
  1140. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments">
  1141. <value>record</value>
  1142. </detail>
  1143. <detail
  1144. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation">
  1145. <value>record</value>
  1146. </detail>
  1147. <detail
  1148. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases">
  1149. <value>record</value>
  1150. </detail>
  1151. <detail
  1152. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments">
  1153. <value>record</value>
  1154. </detail>
  1155. <detail
  1156. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_resources_in_try">
  1157. <value>record</value>
  1158. </detail>
  1159. <detail
  1160. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation">
  1161. <value>record</value>
  1162. </detail>
  1163. <detail
  1164. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for">
  1165. <value>record</value>
  1166. </detail>
  1167. <detail
  1168. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch">
  1169. <value>record</value>
  1170. </detail>
  1171. <detail
  1172. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header">
  1173. <value>record</value>
  1174. </detail>
  1175. <detail
  1176. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer">
  1177. <value>record</value>
  1178. </detail>
  1179. <detail
  1180. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration">
  1181. <value>record</value>
  1182. </detail>
  1183. <detail
  1184. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement">
  1185. <value>record</value>
  1186. </detail>
  1187. <detail
  1188. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.continuation_indentation">
  1189. <value>record</value>
  1190. </detail>
  1191. <detail
  1192. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block">
  1193. <value>record</value>
  1194. </detail>
  1195. <detail
  1196. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression">
  1197. <value>record</value>
  1198. </detail>
  1199. <detail
  1200. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_binary_operator">
  1201. <value>record</value>
  1202. </detail>
  1203. <detail
  1204. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration">
  1205. <value>record</value>
  1206. </detail>
  1207. <detail
  1208. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation">
  1209. <value>record</value>
  1210. </detail>
  1211. <detail
  1212. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_enum_constant">
  1213. <value>record</value>
  1214. </detail>
  1215. <detail
  1216. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indentation.size">
  1217. <value>record</value>
  1218. </detail>
  1219. <detail
  1220. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration">
  1221. <value>record</value>
  1222. </detail>
  1223. <detail
  1224. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator">
  1225. <value>record</value>
  1226. </detail>
  1227. <detail
  1228. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters">
  1229. <value>record</value>
  1230. </detail>
  1231. <detail
  1232. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation">
  1233. <value>record</value>
  1234. </detail>
  1235. <detail
  1236. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters">
  1237. <value>record</value>
  1238. </detail>
  1239. <detail
  1240. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header">
  1241. <value>record</value>
  1242. </detail>
  1243. <detail
  1244. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_ellipsis">
  1245. <value>record</value>
  1246. </detail>
  1247. <detail
  1248. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration">
  1249. <value>record</value>
  1250. </detail>
  1251. <detail
  1252. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement">
  1253. <value>record</value>
  1254. </detail>
  1255. <detail
  1256. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration">
  1257. <value>record</value>
  1258. </detail>
  1259. <detail
  1260. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments">
  1261. <value>record</value>
  1262. </detail>
  1263. <detail
  1264. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation">
  1265. <value>record</value>
  1266. </detail>
  1267. <detail
  1268. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing">
  1269. <value>record</value>
  1270. </detail>
  1271. <detail
  1272. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve">
  1273. <value>record</value>
  1274. </detail>
  1275. <detail
  1276. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment">
  1277. <value>record</value>
  1278. </detail>
  1279. <detail
  1280. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression">
  1281. <value>record</value>
  1282. </detail>
  1283. <detail
  1284. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_unary_operator">
  1285. <value>record</value>
  1286. </detail>
  1287. <detail
  1288. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference">
  1289. <value>record</value>
  1290. </detail>
  1291. <detail
  1292. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases">
  1293. <value>record</value>
  1294. </detail>
  1295. <detail
  1296. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments">
  1297. <value>record</value>
  1298. </detail>
  1299. <detail
  1300. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression">
  1301. <value>record</value>
  1302. </detail>
  1303. <detail
  1304. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block">
  1305. <value>record</value>
  1306. </detail>
  1307. <detail
  1308. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments">
  1309. <value>record</value>
  1310. </detail>
  1311. <detail
  1312. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon">
  1313. <value>record</value>
  1314. </detail>
  1315. <detail
  1316. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.indent_root_tags">
  1317. <value>record</value>
  1318. </detail>
  1319. <detail
  1320. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while">
  1321. <value>record</value>
  1322. </detail>
  1323. <detail
  1324. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try">
  1325. <value>record</value>
  1326. </detail>
  1327. <detail
  1328. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line">
  1329. <value>record</value>
  1330. </detail>
  1331. <detail
  1332. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration">
  1333. <value>record</value>
  1334. </detail>
  1335. <detail
  1336. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try">
  1337. <value>record</value>
  1338. </detail>
  1339. </annotation>
  1340. <setupTask
  1341. xsi:type="setup:CompoundTask"
  1342. name="org.eclipse.core.resources">
  1343. <setupTask
  1344. xsi:type="setup:PreferenceTask"
  1345. key="/instance/org.eclipse.core.resources/description.autobuilding"/>
  1346. </setupTask>
  1347. <setupTask
  1348. xsi:type="setup:CompoundTask"
  1349. name="org.eclipse.jdt.core">
  1350. <setupTask
  1351. xsi:type="setup:PreferenceTask"
  1352. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.align_type_members_on_columns"
  1353. value="false"/>
  1354. <setupTask
  1355. xsi:type="setup:PreferenceTask"
  1356. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression"
  1357. value="16"/>
  1358. <setupTask
  1359. xsi:type="setup:PreferenceTask"
  1360. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation"
  1361. value="0"/>
  1362. <setupTask
  1363. xsi:type="setup:PreferenceTask"
  1364. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant"
  1365. value="16"/>
  1366. <setupTask
  1367. xsi:type="setup:PreferenceTask"
  1368. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call"
  1369. value="16"/>
  1370. <setupTask
  1371. xsi:type="setup:PreferenceTask"
  1372. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation"
  1373. value="16"/>
  1374. <setupTask
  1375. xsi:type="setup:PreferenceTask"
  1376. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression"
  1377. value="16"/>
  1378. <setupTask
  1379. xsi:type="setup:PreferenceTask"
  1380. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_assignment"
  1381. value="0"/>
  1382. <setupTask
  1383. xsi:type="setup:PreferenceTask"
  1384. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_binary_expression"
  1385. value="16"/>
  1386. <setupTask
  1387. xsi:type="setup:PreferenceTask"
  1388. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_compact_if"
  1389. value="52"/>
  1390. <setupTask
  1391. xsi:type="setup:PreferenceTask"
  1392. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_conditional_expression"
  1393. value="48"/>
  1394. <setupTask
  1395. xsi:type="setup:PreferenceTask"
  1396. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_enum_constants"
  1397. value="0"/>
  1398. <setupTask
  1399. xsi:type="setup:PreferenceTask"
  1400. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer"
  1401. value="16"/>
  1402. <setupTask
  1403. xsi:type="setup:PreferenceTask"
  1404. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_method_declaration"
  1405. value="0"/>
  1406. <setupTask
  1407. xsi:type="setup:PreferenceTask"
  1408. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_multiple_fields"
  1409. value="16"/>
  1410. <setupTask
  1411. xsi:type="setup:PreferenceTask"
  1412. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration"
  1413. value="16"/>
  1414. <setupTask
  1415. xsi:type="setup:PreferenceTask"
  1416. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration"
  1417. value="16"/>
  1418. <setupTask
  1419. xsi:type="setup:PreferenceTask"
  1420. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_resources_in_try"
  1421. value="80"/>
  1422. <setupTask
  1423. xsi:type="setup:PreferenceTask"
  1424. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation"
  1425. value="16"/>
  1426. <setupTask
  1427. xsi:type="setup:PreferenceTask"
  1428. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration"
  1429. value="64"/>
  1430. <setupTask
  1431. xsi:type="setup:PreferenceTask"
  1432. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration"
  1433. value="64"/>
  1434. <setupTask
  1435. xsi:type="setup:PreferenceTask"
  1436. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration"
  1437. value="64"/>
  1438. <setupTask
  1439. xsi:type="setup:PreferenceTask"
  1440. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration"
  1441. value="16"/>
  1442. <setupTask
  1443. xsi:type="setup:PreferenceTask"
  1444. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration"
  1445. value="16"/>
  1446. <setupTask
  1447. xsi:type="setup:PreferenceTask"
  1448. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch"
  1449. value="16"/>
  1450. <setupTask
  1451. xsi:type="setup:PreferenceTask"
  1452. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_after_imports"
  1453. value="0"/>
  1454. <setupTask
  1455. xsi:type="setup:PreferenceTask"
  1456. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_after_package"
  1457. value="0"/>
  1458. <setupTask
  1459. xsi:type="setup:PreferenceTask"
  1460. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_field"
  1461. value="0"/>
  1462. <setupTask
  1463. xsi:type="setup:PreferenceTask"
  1464. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration"
  1465. value="0"/>
  1466. <setupTask
  1467. xsi:type="setup:PreferenceTask"
  1468. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_imports"
  1469. value="0"/>
  1470. <setupTask
  1471. xsi:type="setup:PreferenceTask"
  1472. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_member_type"
  1473. value="0"/>
  1474. <setupTask
  1475. xsi:type="setup:PreferenceTask"
  1476. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_method"
  1477. value="0"/>
  1478. <setupTask
  1479. xsi:type="setup:PreferenceTask"
  1480. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk"
  1481. value="0"/>
  1482. <setupTask
  1483. xsi:type="setup:PreferenceTask"
  1484. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_package"
  1485. value="0"/>
  1486. <setupTask
  1487. xsi:type="setup:PreferenceTask"
  1488. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_between_import_groups"
  1489. value="1"/>
  1490. <setupTask
  1491. xsi:type="setup:PreferenceTask"
  1492. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations"
  1493. value="0"/>
  1494. <setupTask
  1495. xsi:type="setup:PreferenceTask"
  1496. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration"
  1497. value="end_of_line"/>
  1498. <setupTask
  1499. xsi:type="setup:PreferenceTask"
  1500. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration"
  1501. value="end_of_line"/>
  1502. <setupTask
  1503. xsi:type="setup:PreferenceTask"
  1504. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_array_initializer"
  1505. value="end_of_line"/>
  1506. <setupTask
  1507. xsi:type="setup:PreferenceTask"
  1508. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_block"
  1509. value="end_of_line"/>
  1510. <setupTask
  1511. xsi:type="setup:PreferenceTask"
  1512. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_block_in_case"
  1513. value="end_of_line"/>
  1514. <setupTask
  1515. xsi:type="setup:PreferenceTask"
  1516. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration"
  1517. value="end_of_line"/>
  1518. <setupTask
  1519. xsi:type="setup:PreferenceTask"
  1520. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_enum_constant"
  1521. value="end_of_line"/>
  1522. <setupTask
  1523. xsi:type="setup:PreferenceTask"
  1524. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration"
  1525. value="end_of_line"/>
  1526. <setupTask
  1527. xsi:type="setup:PreferenceTask"
  1528. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_lambda_body"
  1529. value="end_of_line"/>
  1530. <setupTask
  1531. xsi:type="setup:PreferenceTask"
  1532. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_method_declaration"
  1533. value="end_of_line"/>
  1534. <setupTask
  1535. xsi:type="setup:PreferenceTask"
  1536. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_switch"
  1537. value="end_of_line"/>
  1538. <setupTask
  1539. xsi:type="setup:PreferenceTask"
  1540. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_type_declaration"
  1541. value="end_of_line"/>
  1542. <setupTask
  1543. xsi:type="setup:PreferenceTask"
  1544. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment"
  1545. value="false"/>
  1546. <setupTask
  1547. xsi:type="setup:PreferenceTask"
  1548. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment"
  1549. value="false"/>
  1550. <setupTask
  1551. xsi:type="setup:PreferenceTask"
  1552. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_block_comments"
  1553. value="true"/>
  1554. <setupTask
  1555. xsi:type="setup:PreferenceTask"
  1556. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_header"
  1557. value="false"/>
  1558. <setupTask
  1559. xsi:type="setup:PreferenceTask"
  1560. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_html"
  1561. value="true"/>
  1562. <setupTask
  1563. xsi:type="setup:PreferenceTask"
  1564. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_javadoc_comments"
  1565. value="true"/>
  1566. <setupTask
  1567. xsi:type="setup:PreferenceTask"
  1568. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_line_comments"
  1569. value="true"/>
  1570. <setupTask
  1571. xsi:type="setup:PreferenceTask"
  1572. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_source_code"
  1573. value="true"/>
  1574. <setupTask
  1575. xsi:type="setup:PreferenceTask"
  1576. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.indent_parameter_description"
  1577. value="true"/>
  1578. <setupTask
  1579. xsi:type="setup:PreferenceTask"
  1580. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.indent_root_tags"
  1581. value="true"/>
  1582. <setupTask
  1583. xsi:type="setup:PreferenceTask"
  1584. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags"
  1585. value="insert"/>
  1586. <setupTask
  1587. xsi:type="setup:PreferenceTask"
  1588. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter"
  1589. value="insert"/>
  1590. <setupTask
  1591. xsi:type="setup:PreferenceTask"
  1592. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.line_length"
  1593. value="80"/>
  1594. <setupTask
  1595. xsi:type="setup:PreferenceTask"
  1596. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries"
  1597. value="true"/>
  1598. <setupTask
  1599. xsi:type="setup:PreferenceTask"
  1600. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries"
  1601. value="true"/>
  1602. <setupTask
  1603. xsi:type="setup:PreferenceTask"
  1604. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments"
  1605. value="false"/>
  1606. <setupTask
  1607. xsi:type="setup:PreferenceTask"
  1608. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.compact_else_if"
  1609. value="true"/>
  1610. <setupTask
  1611. xsi:type="setup:PreferenceTask"
  1612. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.continuation_indentation"
  1613. value="2"/>
  1614. <setupTask
  1615. xsi:type="setup:PreferenceTask"
  1616. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer"
  1617. value="2"/>
  1618. <setupTask
  1619. xsi:type="setup:PreferenceTask"
  1620. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.disabling_tag"
  1621. value="@formatter:off"/>
  1622. <setupTask
  1623. xsi:type="setup:PreferenceTask"
  1624. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.enabling_tag"
  1625. value="@formatter:on"/>
  1626. <setupTask
  1627. xsi:type="setup:PreferenceTask"
  1628. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line"
  1629. value="false"/>
  1630. <setupTask
  1631. xsi:type="setup:PreferenceTask"
  1632. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column"
  1633. value="true"/>
  1634. <setupTask
  1635. xsi:type="setup:PreferenceTask"
  1636. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header"
  1637. value="true"/>
  1638. <setupTask
  1639. xsi:type="setup:PreferenceTask"
  1640. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header"
  1641. value="true"/>
  1642. <setupTask
  1643. xsi:type="setup:PreferenceTask"
  1644. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header"
  1645. value="true"/>
  1646. <setupTask
  1647. xsi:type="setup:PreferenceTask"
  1648. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header"
  1649. value="true"/>
  1650. <setupTask
  1651. xsi:type="setup:PreferenceTask"
  1652. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases"
  1653. value="true"/>
  1654. <setupTask
  1655. xsi:type="setup:PreferenceTask"
  1656. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_empty_lines"
  1657. value="false"/>
  1658. <setupTask
  1659. xsi:type="setup:PreferenceTask"
  1660. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_statements_compare_to_block"
  1661. value="true"/>
  1662. <setupTask
  1663. xsi:type="setup:PreferenceTask"
  1664. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_statements_compare_to_body"
  1665. value="true"/>
  1666. <setupTask
  1667. xsi:type="setup:PreferenceTask"
  1668. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases"
  1669. value="true"/>
  1670. <setupTask
  1671. xsi:type="setup:PreferenceTask"
  1672. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch"
  1673. value="true"/>
  1674. <setupTask
  1675. xsi:type="setup:PreferenceTask"
  1676. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indentation.size"
  1677. value="4"/>
  1678. <setupTask
  1679. xsi:type="setup:PreferenceTask"
  1680. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field"
  1681. value="insert"/>
  1682. <setupTask
  1683. xsi:type="setup:PreferenceTask"
  1684. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable"
  1685. value="insert"/>
  1686. <setupTask
  1687. xsi:type="setup:PreferenceTask"
  1688. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method"
  1689. value="insert"/>
  1690. <setupTask
  1691. xsi:type="setup:PreferenceTask"
  1692. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package"
  1693. value="insert"/>
  1694. <setupTask
  1695. xsi:type="setup:PreferenceTask"
  1696. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter"
  1697. value="do not insert"/>
  1698. <setupTask
  1699. xsi:type="setup:PreferenceTask"
  1700. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type"
  1701. value="insert"/>
  1702. <setupTask
  1703. xsi:type="setup:PreferenceTask"
  1704. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_label"
  1705. value="do not insert"/>
  1706. <setupTask
  1707. xsi:type="setup:PreferenceTask"
  1708. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer"
  1709. value="do not insert"/>
  1710. <setupTask
  1711. xsi:type="setup:PreferenceTask"
  1712. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation"
  1713. value="do not insert"/>
  1714. <setupTask
  1715. xsi:type="setup:PreferenceTask"
  1716. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing"
  1717. value="do not insert"/>
  1718. <setupTask
  1719. xsi:type="setup:PreferenceTask"
  1720. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement"
  1721. value="do not insert"/>
  1722. <setupTask
  1723. xsi:type="setup:PreferenceTask"
  1724. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer"
  1725. value="do not insert"/>
  1726. <setupTask
  1727. xsi:type="setup:PreferenceTask"
  1728. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement"
  1729. value="do not insert"/>
  1730. <setupTask
  1731. xsi:type="setup:PreferenceTask"
  1732. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement"
  1733. value="do not insert"/>
  1734. <setupTask
  1735. xsi:type="setup:PreferenceTask"
  1736. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement"
  1737. value="do not insert"/>
  1738. <setupTask
  1739. xsi:type="setup:PreferenceTask"
  1740. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration"
  1741. value="insert"/>
  1742. <setupTask
  1743. xsi:type="setup:PreferenceTask"
  1744. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration"
  1745. value="insert"/>
  1746. <setupTask
  1747. xsi:type="setup:PreferenceTask"
  1748. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block"
  1749. value="insert"/>
  1750. <setupTask
  1751. xsi:type="setup:PreferenceTask"
  1752. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant"
  1753. value="insert"/>
  1754. <setupTask
  1755. xsi:type="setup:PreferenceTask"
  1756. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration"
  1757. value="insert"/>
  1758. <setupTask
  1759. xsi:type="setup:PreferenceTask"
  1760. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body"
  1761. value="insert"/>
  1762. <setupTask
  1763. xsi:type="setup:PreferenceTask"
  1764. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration"
  1765. value="insert"/>
  1766. <setupTask
  1767. xsi:type="setup:PreferenceTask"
  1768. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter"
  1769. value="insert"/>
  1770. <setupTask
  1771. xsi:type="setup:PreferenceTask"
  1772. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator"
  1773. value="insert"/>
  1774. <setupTask
  1775. xsi:type="setup:PreferenceTask"
  1776. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation"
  1777. value="do not insert"/>
  1778. <setupTask
  1779. xsi:type="setup:PreferenceTask"
  1780. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration"
  1781. value="do not insert"/>
  1782. <setupTask
  1783. xsi:type="setup:PreferenceTask"
  1784. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_binary_operator"
  1785. value="insert"/>
  1786. <setupTask
  1787. xsi:type="setup:PreferenceTask"
  1788. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments"
  1789. value="insert"/>
  1790. <setupTask
  1791. xsi:type="setup:PreferenceTask"
  1792. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters"
  1793. value="insert"/>
  1794. <setupTask
  1795. xsi:type="setup:PreferenceTask"
  1796. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block"
  1797. value="insert"/>
  1798. <setupTask
  1799. xsi:type="setup:PreferenceTask"
  1800. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast"
  1801. value="insert"/>
  1802. <setupTask
  1803. xsi:type="setup:PreferenceTask"
  1804. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert"
  1805. value="insert"/>
  1806. <setupTask
  1807. xsi:type="setup:PreferenceTask"
  1808. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case"
  1809. value="insert"/>
  1810. <setupTask
  1811. xsi:type="setup:PreferenceTask"
  1812. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional"
  1813. value="insert"/>
  1814. <setupTask
  1815. xsi:type="setup:PreferenceTask"
  1816. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for"
  1817. value="insert"/>
  1818. <setupTask
  1819. xsi:type="setup:PreferenceTask"
  1820. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement"
  1821. value="insert"/>
  1822. <setupTask
  1823. xsi:type="setup:PreferenceTask"
  1824. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression"
  1825. value="insert"/>
  1826. <setupTask
  1827. xsi:type="setup:PreferenceTask"
  1828. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation"
  1829. value="insert"/>
  1830. <setupTask
  1831. xsi:type="setup:PreferenceTask"
  1832. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer"
  1833. value="insert"/>
  1834. <setupTask
  1835. xsi:type="setup:PreferenceTask"
  1836. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters"
  1837. value="insert"/>
  1838. <setupTask
  1839. xsi:type="setup:PreferenceTask"
  1840. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws"
  1841. value="insert"/>
  1842. <setupTask
  1843. xsi:type="setup:PreferenceTask"
  1844. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments"
  1845. value="insert"/>
  1846. <setupTask
  1847. xsi:type="setup:PreferenceTask"
  1848. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations"
  1849. value="insert"/>
  1850. <setupTask
  1851. xsi:type="setup:PreferenceTask"
  1852. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments"
  1853. value="insert"/>
  1854. <setupTask
  1855. xsi:type="setup:PreferenceTask"
  1856. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments"
  1857. value="insert"/>
  1858. <setupTask
  1859. xsi:type="setup:PreferenceTask"
  1860. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits"
  1861. value="insert"/>
  1862. <setupTask
  1863. xsi:type="setup:PreferenceTask"
  1864. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters"
  1865. value="insert"/>
  1866. <setupTask
  1867. xsi:type="setup:PreferenceTask"
  1868. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws"
  1869. value="insert"/>
  1870. <setupTask
  1871. xsi:type="setup:PreferenceTask"
  1872. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments"
  1873. value="insert"/>
  1874. <setupTask
  1875. xsi:type="setup:PreferenceTask"
  1876. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations"
  1877. value="insert"/>
  1878. <setupTask
  1879. xsi:type="setup:PreferenceTask"
  1880. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations"
  1881. value="insert"/>
  1882. <setupTask
  1883. xsi:type="setup:PreferenceTask"
  1884. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference"
  1885. value="insert"/>
  1886. <setupTask
  1887. xsi:type="setup:PreferenceTask"
  1888. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces"
  1889. value="insert"/>
  1890. <setupTask
  1891. xsi:type="setup:PreferenceTask"
  1892. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments"
  1893. value="insert"/>
  1894. <setupTask
  1895. xsi:type="setup:PreferenceTask"
  1896. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters"
  1897. value="insert"/>
  1898. <setupTask
  1899. xsi:type="setup:PreferenceTask"
  1900. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_ellipsis"
  1901. value="insert"/>
  1902. <setupTask
  1903. xsi:type="setup:PreferenceTask"
  1904. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow"
  1905. value="insert"/>
  1906. <setupTask
  1907. xsi:type="setup:PreferenceTask"
  1908. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference"
  1909. value="do not insert"/>
  1910. <setupTask
  1911. xsi:type="setup:PreferenceTask"
  1912. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments"
  1913. value="do not insert"/>
  1914. <setupTask
  1915. xsi:type="setup:PreferenceTask"
  1916. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters"
  1917. value="do not insert"/>
  1918. <setupTask
  1919. xsi:type="setup:PreferenceTask"
  1920. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer"
  1921. value="do not insert"/>
  1922. <setupTask
  1923. xsi:type="setup:PreferenceTask"
  1924. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression"
  1925. value="do not insert"/>
  1926. <setupTask
  1927. xsi:type="setup:PreferenceTask"
  1928. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference"
  1929. value="do not insert"/>
  1930. <setupTask
  1931. xsi:type="setup:PreferenceTask"
  1932. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation"
  1933. value="do not insert"/>
  1934. <setupTask
  1935. xsi:type="setup:PreferenceTask"
  1936. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast"
  1937. value="do not insert"/>
  1938. <setupTask
  1939. xsi:type="setup:PreferenceTask"
  1940. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch"
  1941. value="do not insert"/>
  1942. <setupTask
  1943. xsi:type="setup:PreferenceTask"
  1944. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration"
  1945. value="do not insert"/>
  1946. <setupTask
  1947. xsi:type="setup:PreferenceTask"
  1948. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant"
  1949. value="do not insert"/>
  1950. <setupTask
  1951. xsi:type="setup:PreferenceTask"
  1952. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for"
  1953. value="do not insert"/>
  1954. <setupTask
  1955. xsi:type="setup:PreferenceTask"
  1956. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if"
  1957. value="do not insert"/>
  1958. <setupTask
  1959. xsi:type="setup:PreferenceTask"
  1960. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration"
  1961. value="do not insert"/>
  1962. <setupTask
  1963. xsi:type="setup:PreferenceTask"
  1964. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation"
  1965. value="do not insert"/>
  1966. <setupTask
  1967. xsi:type="setup:PreferenceTask"
  1968. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression"
  1969. value="do not insert"/>
  1970. <setupTask
  1971. xsi:type="setup:PreferenceTask"
  1972. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch"
  1973. value="do not insert"/>
  1974. <setupTask
  1975. xsi:type="setup:PreferenceTask"
  1976. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized"
  1977. value="do not insert"/>
  1978. <setupTask
  1979. xsi:type="setup:PreferenceTask"
  1980. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try"
  1981. value="do not insert"/>
  1982. <setupTask
  1983. xsi:type="setup:PreferenceTask"
  1984. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while"
  1985. value="do not insert"/>
  1986. <setupTask
  1987. xsi:type="setup:PreferenceTask"
  1988. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator"
  1989. value="do not insert"/>
  1990. <setupTask
  1991. xsi:type="setup:PreferenceTask"
  1992. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator"
  1993. value="do not insert"/>
  1994. <setupTask
  1995. xsi:type="setup:PreferenceTask"
  1996. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional"
  1997. value="insert"/>
  1998. <setupTask
  1999. xsi:type="setup:PreferenceTask"
  2000. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard"
  2001. value="do not insert"/>
  2002. <setupTask
  2003. xsi:type="setup:PreferenceTask"
  2004. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for"
  2005. value="insert"/>
  2006. <setupTask
  2007. xsi:type="setup:PreferenceTask"
  2008. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources"
  2009. value="insert"/>
  2010. <setupTask
  2011. xsi:type="setup:PreferenceTask"
  2012. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_unary_operator"
  2013. value="do not insert"/>
  2014. <setupTask
  2015. xsi:type="setup:PreferenceTask"
  2016. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter"
  2017. value="insert"/>
  2018. <setupTask
  2019. xsi:type="setup:PreferenceTask"
  2020. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator"
  2021. value="insert"/>
  2022. <setupTask
  2023. xsi:type="setup:PreferenceTask"
  2024. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration"
  2025. value="insert"/>
  2026. <setupTask
  2027. xsi:type="setup:PreferenceTask"
  2028. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_binary_operator"
  2029. value="insert"/>
  2030. <setupTask
  2031. xsi:type="setup:PreferenceTask"
  2032. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference"
  2033. value="do not insert"/>
  2034. <setupTask
  2035. xsi:type="setup:PreferenceTask"
  2036. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments"
  2037. value="do not insert"/>
  2038. <setupTask
  2039. xsi:type="setup:PreferenceTask"
  2040. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters"
  2041. value="do not insert"/>
  2042. <setupTask
  2043. xsi:type="setup:PreferenceTask"
  2044. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer"
  2045. value="do not insert"/>
  2046. <setupTask
  2047. xsi:type="setup:PreferenceTask"
  2048. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression"
  2049. value="do not insert"/>
  2050. <setupTask
  2051. xsi:type="setup:PreferenceTask"
  2052. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference"
  2053. value="do not insert"/>
  2054. <setupTask
  2055. xsi:type="setup:PreferenceTask"
  2056. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation"
  2057. value="do not insert"/>
  2058. <setupTask
  2059. xsi:type="setup:PreferenceTask"
  2060. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast"
  2061. value="do not insert"/>
  2062. <setupTask
  2063. xsi:type="setup:PreferenceTask"
  2064. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch"
  2065. value="do not insert"/>
  2066. <setupTask
  2067. xsi:type="setup:PreferenceTask"
  2068. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration"
  2069. value="do not insert"/>
  2070. <setupTask
  2071. xsi:type="setup:PreferenceTask"
  2072. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant"
  2073. value="do not insert"/>
  2074. <setupTask
  2075. xsi:type="setup:PreferenceTask"
  2076. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for"
  2077. value="do not insert"/>
  2078. <setupTask
  2079. xsi:type="setup:PreferenceTask"
  2080. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if"
  2081. value="do not insert"/>
  2082. <setupTask
  2083. xsi:type="setup:PreferenceTask"
  2084. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration"
  2085. value="do not insert"/>
  2086. <setupTask
  2087. xsi:type="setup:PreferenceTask"
  2088. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation"
  2089. value="do not insert"/>
  2090. <setupTask
  2091. xsi:type="setup:PreferenceTask"
  2092. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression"
  2093. value="do not insert"/>
  2094. <setupTask
  2095. xsi:type="setup:PreferenceTask"
  2096. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch"
  2097. value="do not insert"/>
  2098. <setupTask
  2099. xsi:type="setup:PreferenceTask"
  2100. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized"
  2101. value="do not insert"/>
  2102. <setupTask
  2103. xsi:type="setup:PreferenceTask"
  2104. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try"
  2105. value="do not insert"/>
  2106. <setupTask
  2107. xsi:type="setup:PreferenceTask"
  2108. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while"
  2109. value="do not insert"/>
  2110. <setupTask
  2111. xsi:type="setup:PreferenceTask"
  2112. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert"
  2113. value="insert"/>
  2114. <setupTask
  2115. xsi:type="setup:PreferenceTask"
  2116. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case"
  2117. value="insert"/>
  2118. <setupTask
  2119. xsi:type="setup:PreferenceTask"
  2120. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional"
  2121. value="insert"/>
  2122. <setupTask
  2123. xsi:type="setup:PreferenceTask"
  2124. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default"
  2125. value="insert"/>
  2126. <setupTask
  2127. xsi:type="setup:PreferenceTask"
  2128. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for"
  2129. value="insert"/>
  2130. <setupTask
  2131. xsi:type="setup:PreferenceTask"
  2132. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement"
  2133. value="insert"/>
  2134. <setupTask
  2135. xsi:type="setup:PreferenceTask"
  2136. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression"
  2137. value="do not insert"/>
  2138. <setupTask
  2139. xsi:type="setup:PreferenceTask"
  2140. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation"
  2141. value="do not insert"/>
  2142. <setupTask
  2143. xsi:type="setup:PreferenceTask"
  2144. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer"
  2145. value="do not insert"/>
  2146. <setupTask
  2147. xsi:type="setup:PreferenceTask"
  2148. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters"
  2149. value="do not insert"/>
  2150. <setupTask
  2151. xsi:type="setup:PreferenceTask"
  2152. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws"
  2153. value="do not insert"/>
  2154. <setupTask
  2155. xsi:type="setup:PreferenceTask"
  2156. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments"
  2157. value="do not insert"/>
  2158. <setupTask
  2159. xsi:type="setup:PreferenceTask"
  2160. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations"
  2161. value="do not insert"/>
  2162. <setupTask
  2163. xsi:type="setup:PreferenceTask"
  2164. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments"
  2165. value="do not insert"/>
  2166. <setupTask
  2167. xsi:type="setup:PreferenceTask"
  2168. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments"
  2169. value="do not insert"/>
  2170. <setupTask
  2171. xsi:type="setup:PreferenceTask"
  2172. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits"
  2173. value="do not insert"/>
  2174. <setupTask
  2175. xsi:type="setup:PreferenceTask"
  2176. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters"
  2177. value="do not insert"/>
  2178. <setupTask
  2179. xsi:type="setup:PreferenceTask"
  2180. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws"
  2181. value="do not insert"/>
  2182. <setupTask
  2183. xsi:type="setup:PreferenceTask"
  2184. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments"
  2185. value="do not insert"/>
  2186. <setupTask
  2187. xsi:type="setup:PreferenceTask"
  2188. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations"
  2189. value="do not insert"/>
  2190. <setupTask
  2191. xsi:type="setup:PreferenceTask"
  2192. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations"
  2193. value="do not insert"/>
  2194. <setupTask
  2195. xsi:type="setup:PreferenceTask"
  2196. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference"
  2197. value="do not insert"/>
  2198. <setupTask
  2199. xsi:type="setup:PreferenceTask"
  2200. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces"
  2201. value="do not insert"/>
  2202. <setupTask
  2203. xsi:type="setup:PreferenceTask"
  2204. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments"
  2205. value="do not insert"/>
  2206. <setupTask
  2207. xsi:type="setup:PreferenceTask"
  2208. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters"
  2209. value="do not insert"/>
  2210. <setupTask
  2211. xsi:type="setup:PreferenceTask"
  2212. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_ellipsis"
  2213. value="do not insert"/>
  2214. <setupTask
  2215. xsi:type="setup:PreferenceTask"
  2216. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow"
  2217. value="insert"/>
  2218. <setupTask
  2219. xsi:type="setup:PreferenceTask"
  2220. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference"
  2221. value="do not insert"/>
  2222. <setupTask
  2223. xsi:type="setup:PreferenceTask"
  2224. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments"
  2225. value="do not insert"/>
  2226. <setupTask
  2227. xsi:type="setup:PreferenceTask"
  2228. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters"
  2229. value="do not insert"/>
  2230. <setupTask
  2231. xsi:type="setup:PreferenceTask"
  2232. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration"
  2233. value="insert"/>
  2234. <setupTask
  2235. xsi:type="setup:PreferenceTask"
  2236. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration"
  2237. value="insert"/>
  2238. <setupTask
  2239. xsi:type="setup:PreferenceTask"
  2240. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer"
  2241. value="do not insert"/>
  2242. <setupTask
  2243. xsi:type="setup:PreferenceTask"
  2244. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block"
  2245. value="insert"/>
  2246. <setupTask
  2247. xsi:type="setup:PreferenceTask"
  2248. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration"
  2249. value="insert"/>
  2250. <setupTask
  2251. xsi:type="setup:PreferenceTask"
  2252. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant"
  2253. value="insert"/>
  2254. <setupTask
  2255. xsi:type="setup:PreferenceTask"
  2256. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration"
  2257. value="insert"/>
  2258. <setupTask
  2259. xsi:type="setup:PreferenceTask"
  2260. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration"
  2261. value="insert"/>
  2262. <setupTask
  2263. xsi:type="setup:PreferenceTask"
  2264. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch"
  2265. value="insert"/>
  2266. <setupTask
  2267. xsi:type="setup:PreferenceTask"
  2268. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration"
  2269. value="insert"/>
  2270. <setupTask
  2271. xsi:type="setup:PreferenceTask"
  2272. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression"
  2273. value="do not insert"/>
  2274. <setupTask
  2275. xsi:type="setup:PreferenceTask"
  2276. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference"
  2277. value="do not insert"/>
  2278. <setupTask
  2279. xsi:type="setup:PreferenceTask"
  2280. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference"
  2281. value="do not insert"/>
  2282. <setupTask
  2283. xsi:type="setup:PreferenceTask"
  2284. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation"
  2285. value="do not insert"/>
  2286. <setupTask
  2287. xsi:type="setup:PreferenceTask"
  2288. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration"
  2289. value="do not insert"/>
  2290. <setupTask
  2291. xsi:type="setup:PreferenceTask"
  2292. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch"
  2293. value="insert"/>
  2294. <setupTask
  2295. xsi:type="setup:PreferenceTask"
  2296. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration"
  2297. value="do not insert"/>
  2298. <setupTask
  2299. xsi:type="setup:PreferenceTask"
  2300. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant"
  2301. value="do not insert"/>
  2302. <setupTask
  2303. xsi:type="setup:PreferenceTask"
  2304. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for"
  2305. value="insert"/>
  2306. <setupTask
  2307. xsi:type="setup:PreferenceTask"
  2308. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if"
  2309. value="insert"/>
  2310. <setupTask
  2311. xsi:type="setup:PreferenceTask"
  2312. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration"
  2313. value="do not insert"/>
  2314. <setupTask
  2315. xsi:type="setup:PreferenceTask"
  2316. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation"
  2317. value="do not insert"/>
  2318. <setupTask
  2319. xsi:type="setup:PreferenceTask"
  2320. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression"
  2321. value="do not insert"/>
  2322. <setupTask
  2323. xsi:type="setup:PreferenceTask"
  2324. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch"
  2325. value="insert"/>
  2326. <setupTask
  2327. xsi:type="setup:PreferenceTask"
  2328. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized"
  2329. value="insert"/>
  2330. <setupTask
  2331. xsi:type="setup:PreferenceTask"
  2332. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try"
  2333. value="insert"/>
  2334. <setupTask
  2335. xsi:type="setup:PreferenceTask"
  2336. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while"
  2337. value="insert"/>
  2338. <setupTask
  2339. xsi:type="setup:PreferenceTask"
  2340. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return"
  2341. value="insert"/>
  2342. <setupTask
  2343. xsi:type="setup:PreferenceTask"
  2344. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw"
  2345. value="insert"/>
  2346. <setupTask
  2347. xsi:type="setup:PreferenceTask"
  2348. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator"
  2349. value="do not insert"/>
  2350. <setupTask
  2351. xsi:type="setup:PreferenceTask"
  2352. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator"
  2353. value="do not insert"/>
  2354. <setupTask
  2355. xsi:type="setup:PreferenceTask"
  2356. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional"
  2357. value="insert"/>
  2358. <setupTask
  2359. xsi:type="setup:PreferenceTask"
  2360. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard"
  2361. value="do not insert"/>
  2362. <setupTask
  2363. xsi:type="setup:PreferenceTask"
  2364. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon"
  2365. value="do not insert"/>
  2366. <setupTask
  2367. xsi:type="setup:PreferenceTask"
  2368. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for"
  2369. value="do not insert"/>
  2370. <setupTask
  2371. xsi:type="setup:PreferenceTask"
  2372. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources"
  2373. value="do not insert"/>
  2374. <setupTask
  2375. xsi:type="setup:PreferenceTask"
  2376. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_unary_operator"
  2377. value="do not insert"/>
  2378. <setupTask
  2379. xsi:type="setup:PreferenceTask"
  2380. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference"
  2381. value="do not insert"/>
  2382. <setupTask
  2383. xsi:type="setup:PreferenceTask"
  2384. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer"
  2385. value="do not insert"/>
  2386. <setupTask
  2387. xsi:type="setup:PreferenceTask"
  2388. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression"
  2389. value="do not insert"/>
  2390. <setupTask
  2391. xsi:type="setup:PreferenceTask"
  2392. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration"
  2393. value="do not insert"/>
  2394. <setupTask
  2395. xsi:type="setup:PreferenceTask"
  2396. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration"
  2397. value="do not insert"/>
  2398. <setupTask
  2399. xsi:type="setup:PreferenceTask"
  2400. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant"
  2401. value="do not insert"/>
  2402. <setupTask
  2403. xsi:type="setup:PreferenceTask"
  2404. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration"
  2405. value="do not insert"/>
  2406. <setupTask
  2407. xsi:type="setup:PreferenceTask"
  2408. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation"
  2409. value="do not insert"/>
  2410. <setupTask
  2411. xsi:type="setup:PreferenceTask"
  2412. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.join_lines_in_comments"
  2413. value="true"/>
  2414. <setupTask
  2415. xsi:type="setup:PreferenceTask"
  2416. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.join_wrapped_lines"
  2417. value="true"/>
  2418. <setupTask
  2419. xsi:type="setup:PreferenceTask"
  2420. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line"
  2421. value="false"/>
  2422. <setupTask
  2423. xsi:type="setup:PreferenceTask"
  2424. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line"
  2425. value="false"/>
  2426. <setupTask
  2427. xsi:type="setup:PreferenceTask"
  2428. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line"
  2429. value="false"/>
  2430. <setupTask
  2431. xsi:type="setup:PreferenceTask"
  2432. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line"
  2433. value="false"/>
  2434. <setupTask
  2435. xsi:type="setup:PreferenceTask"
  2436. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.lineSplit"
  2437. value="120"/>
  2438. <setupTask
  2439. xsi:type="setup:PreferenceTask"
  2440. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column"
  2441. value="false"/>
  2442. <setupTask
  2443. xsi:type="setup:PreferenceTask"
  2444. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column"
  2445. value="false"/>
  2446. <setupTask
  2447. xsi:type="setup:PreferenceTask"
  2448. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body"
  2449. value="0"/>
  2450. <setupTask
  2451. xsi:type="setup:PreferenceTask"
  2452. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve"
  2453. value="1"/>
  2454. <setupTask
  2455. xsi:type="setup:PreferenceTask"
  2456. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line"
  2457. value="false"/>
  2458. <setupTask
  2459. xsi:type="setup:PreferenceTask"
  2460. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.tabulation.char"
  2461. value="tab"/>
  2462. <setupTask
  2463. xsi:type="setup:PreferenceTask"
  2464. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.tabulation.size"
  2465. value="4"/>
  2466. <setupTask
  2467. xsi:type="setup:PreferenceTask"
  2468. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.use_on_off_tags"
  2469. value="false"/>
  2470. <setupTask
  2471. xsi:type="setup:PreferenceTask"
  2472. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations"
  2473. value="false"/>
  2474. <setupTask
  2475. xsi:type="setup:PreferenceTask"
  2476. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_before_binary_operator"
  2477. value="true"/>
  2478. <setupTask
  2479. xsi:type="setup:PreferenceTask"
  2480. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch"
  2481. value="true"/>
  2482. <setupTask
  2483. xsi:type="setup:PreferenceTask"
  2484. key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested"
  2485. value="true"/>
  2486. </setupTask>
  2487. <setupTask
  2488. xsi:type="setup:CompoundTask"
  2489. name="org.eclipse.jdt.ui">
  2490. <setupTask
  2491. xsi:type="setup:PreferenceTask"
  2492. key="/instance/org.eclipse.jdt.ui/formatter_profile"
  2493. value="_SCT"/>
  2494. <setupTask
  2495. xsi:type="setup:PreferenceTask"
  2496. key="/instance/org.eclipse.jdt.ui/formatter_settings_version"
  2497. value="12"/>
  2498. <setupTask
  2499. xsi:type="setup:PreferenceTask"
  2500. key="/instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.formatterprofiles"
  2501. value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?>${0xD}${0xA}&lt;profiles version=&quot;12&quot;>${0xD}${0xA}&lt;profile kind=&quot;CodeFormatterProfile&quot; name=&quot;SCT&quot; version=&quot;12&quot;>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.disabling_tag&quot; value=&quot;@formatter:off&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_before_field&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.use_on_off_tags&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_ellipsis&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_multiple_fields&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_conditional_expression&quot; value=&quot;48&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_binary_operator&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_array_initializer&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_after_package&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.continuation_indentation&quot; value=&quot;2&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_binary_operator&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_before_package&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.compiler.source&quot; value=&quot;1.8&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.format_line_comments&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.join_wrapped_lines&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_before_member_type&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.align_type_members_on_columns&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_unary_operator&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.indent_parameter_description&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.lineSplit&quot; value=&quot;120&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indentation.size&quot; value=&quot;4&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.enabling_tag&quot; value=&quot;@formatter:on&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration&quot; value=&quot;64&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_assignment&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.compiler.problem.assertIdentifier&quot; value=&quot;error&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.tabulation.char&quot; value=&quot;tab&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_statements_compare_to_body&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_before_method&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_method_declaration&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_switch&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.compiler.problem.enumIdentifier&quot; value=&quot;error&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_ellipsis&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_block&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_method_declaration&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.compact_else_if&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.indent_root_tags&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_enum_constant&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.tabulation.size&quot; value=&quot;4&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_empty_lines&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_block_in_case&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve&quot; value=&quot;1&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.compiler.compliance&quot; value=&quot;1.8&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer&quot; value=&quot;2&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_lambda_body&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_unary_operator&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration&quot; value=&quot;64&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_binary_expression&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode&quot; value=&quot;enabled&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_after_label&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.format_javadoc_comments&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.line_length&quot; value=&quot;80&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_between_import_groups&quot; value=&quot;1&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_semicolon&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.wrap_before_binary_operator&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_statements_compare_to_block&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration&quot; value=&quot;64&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.join_lines_in_comments&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_compact_if&quot; value=&quot;52&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_before_imports&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.format_html&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.format_source_code&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration&quot; value=&quot;16&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.compiler.codegen.targetPlatform&quot; value=&quot;1.8&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_resources_in_try&quot; value=&quot;80&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.format_header&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.format_block_comments&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.alignment_for_enum_constants&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.brace_position_for_type_declaration&quot; value=&quot;end_of_line&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.blank_lines_after_imports&quot; value=&quot;0&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header&quot; value=&quot;true&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for&quot; value=&quot;insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments&quot; value=&quot;do not insert&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;setting id=&quot;org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line&quot; value=&quot;false&quot;/>${0xD}${0xA}&lt;/profile>${0xD}${0xA}&lt;/profiles>${0xD}${0xA}"/>
  2502. </setupTask>
  2503. <setupTask
  2504. xsi:type="setup:CompoundTask"
  2505. name="org.eclipse.oomph.setup.ui">
  2506. <setupTask
  2507. xsi:type="setup:PreferenceTask"
  2508. key="/instance/org.eclipse.oomph.setup.ui/showToolBarContributions"
  2509. value="true"/>
  2510. </setupTask>
  2511. </setupTask>
  2512. <setupTask
  2513. xsi:type="launching:LaunchTask"
  2514. excludedTriggers="STARTUP"
  2515. launcher="GenerateExpressions.mwe2"/>
  2516. <setupTask
  2517. xsi:type="launching:LaunchTask"
  2518. excludedTriggers="STARTUP"
  2519. launcher="GenerateSText.mwe2"/>
  2520. <setupTask
  2521. xsi:type="launching:LaunchTask"
  2522. excludedTriggers="STARTUP"
  2523. launcher="GenerateSGen.mwe2"/>
  2524. <stream name="master"/>
  2525. </setup:Project>