123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526 |
- <?xml version="1.0" encoding="UTF-8"?>
- <setup:Project
- xmi:version="2.0"
- xmlns:xmi="http://www.omg.org/XMI"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:git="http://www.eclipse.org/oomph/setup/git/1.0"
- xmlns:jdt="http://www.eclipse.org/oomph/setup/jdt/1.0"
- xmlns:launching="http://www.eclipse.org/oomph/setup/launching/1.0"
- xmlns:pde="http://www.eclipse.org/oomph/setup/pde/1.0"
- xmlns:predicates="http://www.eclipse.org/oomph/predicates/1.0"
- xmlns:projects="http://www.eclipse.org/oomph/setup/projects/1.0"
- xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
- xmlns:setup.p2="http://www.eclipse.org/oomph/setup/p2/1.0"
- xmlns:setup.workingsets="http://www.eclipse.org/oomph/setup/workingsets/1.0"
- 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"
- name="sct"
- label="Statechart Tools">
- <setupTask
- xsi:type="jdt:JRETask"
- version="JavaSE-1.7"
- location="${jre.location-1.7}">
- <description>Define the JRE needed to compile and run the Java projects of ${scope.project.label}</description>
- </setupTask>
- <setupTask
- xsi:type="setup:EclipseIniTask"
- option="-Xmx"
- value="2048m"
- vm="true">
- <description>Set the heap space needed to work with the projects of ${scope.project.label}</description>
- </setupTask>
- <setupTask
- xsi:type="setup:EclipseIniTask"
- option="-XX:MaxPermSize="
- value="256m"
- vm="true"/>
- <setupTask
- xsi:type="setup:ResourceCreationTask"
- excludedTriggers="STARTUP MANUAL"
- content="<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
	<section name="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart">
		<item value="true" key="group_libraries"/>
		<item value="false" key="linkWithEditor"/>
		<item value="2" key="layout"/>
		<item value="2" key="rootMode"/>
		<item value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#x0D;&#x0A;&lt;packageExplorer configured=&quot;true&quot; group_libraries=&quot;1&quot; layout=&quot;2&quot; linkWithEditor=&quot;0&quot; rootMode=&quot;2&quot; sortWorkingSets=&quot;false&quot; workingSetName=&quot;&quot;&gt;&#x0D;&#x0A;&lt;localWorkingSetManager&gt;&#x0D;&#x0A;&lt;workingSet editPageId=&quot;org.eclipse.jdt.internal.ui.OthersWorkingSet&quot; factoryID=&quot;org.eclipse.ui.internal.WorkingSetFactory&quot; id=&quot;1382792884467_1&quot; label=&quot;Other Projects&quot; name=&quot;Other Projects&quot;/&gt;&#x0D;&#x0A;&lt;/localWorkingSetManager&gt;&#x0D;&#x0A;&lt;activeWorkingSet workingSetName=&quot;Other Projects&quot;/&gt;&#x0D;&#x0A;&lt;allWorkingSets workingSetName=&quot;Other Projects&quot;/&gt;&#x0D;&#x0A;&lt;/packageExplorer&gt;" key="memento"/>
	</section>
</section>
"
- targetURL="${workspace.location|uri}/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml"
- encoding="UTF-8">
- <description>Initialize JDT's package explorer to show working sets as its root objects</description>
- </setupTask>
- <setupTask
- xsi:type="setup:VariableTask"
- name="eclipse.target.platform"
- defaultValue="Mars"
- storageURI="scope://Workspace">
- <description>xx</description>
- </setupTask>
- <setupTask
- xsi:type="setup.p2:P2Task">
- <requirement
- name="org.eclipse.emf.sdk.feature.group"/>
- <requirement
- name="org.eclipse.oomph.version.feature.group"/>
- <requirement
- name="org.eclipse.oomph.launches.feature.group"/>
- <requirement
- name="org.eclipse.oomph.manifests.feature.group"/>
- <requirement
- name="org.eclipse.oomph.projectconfig.feature.group"/>
- <requirement
- name="org.eclipse.oomph.projectcopy.feature.group"/>
- <requirement
- name="org.eclipse.oomph.workingsets.feature.group"/>
- <requirement
- name="org.eclipse.oomph.setup.feature.group"/>
- <requirement
- name="org.eclipse.xtext.sdk.feature.group"/>
- <requirement
- name="org.eclipse.team.svn.feature.group"/>
- <requirement
- name="org.eclipse.m2e.feature.feature.group"/>
- <repository
- url="${oomph.update.url}"/>
- <description>Install the tools needed in the IDE to work with the source code for ${scope.project.label}</description>
- </setupTask>
- <setupTask
- xsi:type="git:GitCloneTask"
- id="git.clone.statechart"
- remoteURI="https://github.com/Yakindu/statecharts.git">
- <description>${scope.project.label}</description>
- </setupTask>
- <setupTask
- xsi:type="setup.workingsets:WorkingSetTask">
- <workingSet
- name="${scope.project.name}">
- <predicate
- xsi:type="predicates:AndPredicate">
- <operand
- xsi:type="predicates:RepositoryPredicate"
- project="org.yakindu.sct-feature"/>
- </predicate>
- </workingSet>
- <description>The dynamic working sets for ${scope.project.label}</description>
- <setupTask
- xsi:type="pde:TargetPlatformTask"
- excludedTriggers="STARTUP"
- name="${target_definition}"/>
- </setupTask>
- <setupTask
- xsi:type="setup:VariableTask"
- name="target_definition"
- value="Mars (SCT)"
- label="Target definition">
- <description>Target definition id</description>
- </setupTask>
- <setupTask
- xsi:type="projects:ProjectsImportTask">
- <sourceLocator
- rootFolder="${git.clone.statechart.location}"
- locateNestedProjects="true"/>
- </setupTask>
- <setupTask
- xsi:type="pde:TargetPlatformTask"
- name="${target_definition}"/>
- <setupTask
- xsi:type="setup:CompoundTask"
- name="User Preferences">
- <annotation
- source="http://www.eclipse.org/oomph/setup/UserPreferences">
- <detail
- key="/instance/org.eclipse.jdt.launching/org.eclipse.jdt.launching.PREF_VM_XML">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.ui.trace/tracingFilePath">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.launching/org.eclipse.jdt.launching.PREF_DEFAULT_ENVIRONMENTS_XML">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.ui.ide/WORKSPACE_NAME">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.mylyn.team.ui/org.eclipse.mylyn.team.commit.template">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.linuxtools.rpm.ui.editor/rpmLisMastBuild">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.mylyn.tasks.ui/org.eclipse.mylyn.data.dir">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.ui.trace/tracingEntries">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.JRE_SRCROOT">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.ui.monitoring/noninteresting_thread_filter">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.ui.workbench/PLUGINS_NOT_ACTIVATED_ON_STARTUP">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.JRE_LIB">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.pde.core/workspace_target_handle">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.classpathVariable.JRE_SRC">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.search/org.eclipse.search.defaultPerspective">
- <value>ignore</value>
- </detail>
- <detail
- key="/instance/org.eclipse.oomph.setup.ui/showToolBarContributions">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_after_package">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.formatterprofiles">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_member_type">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_method">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_conditional_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_after_imports">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_imports">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_compact_if">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_header">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_label">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.tabulation.size">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_switch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_statements_compare_to_body">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_before_binary_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_unary_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.line_length">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.core.resources/description.autobuilding">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.indent_parameter_description">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_enum_constants">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_line_comments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_block">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_source_code">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.align_type_members_on_columns">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_multiple_fields">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.lineSplit">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_lambda_body">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_binary_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_empty_lines">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.use_on_off_tags">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.disabling_tag">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.ui/formatter_settings_version">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.join_lines_in_comments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.enabling_tag">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_block_comments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_package">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.join_wrapped_lines">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_between_import_groups">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.compact_else_if">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.tabulation.char">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_method_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_javadoc_comments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_statements_compare_to_block">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_binary_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_field">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_assignment">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_ellipsis">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.ui/formatter_profile">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_block_in_case">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_html">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_method_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_resources_in_try">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.continuation_indentation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_binary_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_enum_constant">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indentation.size">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_ellipsis">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_unary_operator">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.indent_root_tags">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration">
- <value>record</value>
- </detail>
- <detail
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try">
- <value>record</value>
- </detail>
- </annotation>
- <setupTask
- xsi:type="setup:CompoundTask"
- name="org.eclipse.core.resources">
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.core.resources/description.autobuilding"/>
- </setupTask>
- <setupTask
- xsi:type="setup:CompoundTask"
- name="org.eclipse.jdt.core">
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.align_type_members_on_columns"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_assignment"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_binary_expression"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_compact_if"
- value="52"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_conditional_expression"
- value="48"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_enum_constants"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_method_declaration"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_multiple_fields"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_resources_in_try"
- value="80"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration"
- value="64"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration"
- value="64"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration"
- value="64"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch"
- value="16"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_after_imports"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_after_package"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_field"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_imports"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_member_type"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_method"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_before_package"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_between_import_groups"
- value="1"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_array_initializer"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_block"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_block_in_case"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_enum_constant"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_lambda_body"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_method_declaration"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_switch"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.brace_position_for_type_declaration"
- value="end_of_line"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_block_comments"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_header"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_html"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_javadoc_comments"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_line_comments"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.format_source_code"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.indent_parameter_description"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.indent_root_tags"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.line_length"
- value="80"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.compact_else_if"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.continuation_indentation"
- value="2"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer"
- value="2"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.disabling_tag"
- value="@formatter:off"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.enabling_tag"
- value="@formatter:on"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_empty_lines"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_statements_compare_to_block"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_statements_compare_to_body"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.indentation.size"
- value="4"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_label"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_binary_operator"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_ellipsis"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_after_unary_operator"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_binary_operator"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_ellipsis"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional"
- value="insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_before_unary_operator"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation"
- value="do not insert"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.join_lines_in_comments"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.join_wrapped_lines"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.lineSplit"
- value="120"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body"
- value="0"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve"
- value="1"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.tabulation.char"
- value="tab"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.tabulation.size"
- value="4"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.use_on_off_tags"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations"
- value="false"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_before_binary_operator"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch"
- value="true"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.core/org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested"
- value="true"/>
- </setupTask>
- <setupTask
- xsi:type="setup:CompoundTask"
- name="org.eclipse.jdt.ui">
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.ui/formatter_profile"
- value="_SCT"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.ui/formatter_settings_version"
- value="12"/>
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.jdt.ui/org.eclipse.jdt.ui.formatterprofiles"
- value="<?xml version="1.0" encoding="UTF-8" standalone="no"?>${0xD}${0xA}<profiles version="12">${0xD}${0xA}<profile kind="CodeFormatterProfile" name="SCT" version="12">${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_field" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.use_on_off_tags" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_multiple_fields" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_conditional_expression" value="48"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_binary_operator" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_array_initializer" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_package" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_binary_operator" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_package" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.compiler.source" value="1.8"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.format_line_comments" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.join_wrapped_lines" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_member_type" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_unary_operator" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.indent_parameter_description" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.lineSplit" value="120"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indentation.size" value="4"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.enabling_tag" value="@formatter:on"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration" value="64"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_assignment" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.compiler.problem.assertIdentifier" value="error"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.tabulation.char" value="tab"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_body" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_method" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_method_declaration" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_switch" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.compiler.problem.enumIdentifier" value="error"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_ellipsis" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_method_declaration" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.compact_else_if" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.indent_root_tags" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_constant" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.tabulation.size" value="4"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_empty_lines" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block_in_case" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve" value="1"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.compiler.compliance" value="1.8"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer" value="2"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_lambda_body" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_unary_operator" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration" value="64"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_binary_expression" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode" value="enabled"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_label" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.format_javadoc_comments" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.line_length" value="80"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_import_groups" value="1"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.wrap_before_binary_operator" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_block" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration" value="64"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.join_lines_in_comments" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_compact_if" value="52"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.format_html" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.format_source_code" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration" value="16"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.compiler.codegen.targetPlatform" value="1.8"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_resources_in_try" value="80"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.format_header" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.format_block_comments" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.brace_position_for_type_declaration" value="end_of_line"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_imports" value="0"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header" value="true"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for" value="insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments" value="do not insert"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column" value="false"/>${0xD}${0xA}<setting id="org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line" value="false"/>${0xD}${0xA}</profile>${0xD}${0xA}</profiles>${0xD}${0xA}"/>
- </setupTask>
- <setupTask
- xsi:type="setup:CompoundTask"
- name="org.eclipse.oomph.setup.ui">
- <setupTask
- xsi:type="setup:PreferenceTask"
- key="/instance/org.eclipse.oomph.setup.ui/showToolBarContributions"
- value="true"/>
- </setupTask>
- </setupTask>
- <setupTask
- xsi:type="launching:LaunchTask"
- excludedTriggers="STARTUP"
- launcher="GenerateExpressions.mwe2"/>
- <setupTask
- xsi:type="launching:LaunchTask"
- excludedTriggers="STARTUP"
- launcher="GenerateSText.mwe2"/>
- <setupTask
- xsi:type="launching:LaunchTask"
- excludedTriggers="STARTUP"
- launcher="GenerateSGen.mwe2"/>
- <stream name="master"/>
- </setup:Project>
|