├── .baseline ├── checkstyle │ ├── checkstyle-suppressions.xml │ └── checkstyle.xml ├── copyright │ └── apache-2.0.txt ├── eclipse │ ├── dynamic │ │ ├── dotfile.checkstyle │ │ └── dotfile.settings │ │ │ └── edu.umd.cs.findbugs.core.prefs │ ├── org.eclipse.jdt.core.prefs │ └── static │ │ └── dotfile.settings │ │ ├── edu.umd.cs.findbugs.plugin.eclipse.prefs │ │ └── org.eclipse.jdt.ui.prefs ├── findbugs │ └── excludeFilter.xml └── idea │ └── intellij-java-palantir-style.xml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── build.gradle ├── circle.yml ├── dropwizard-index-page-example ├── ExampleApplication.launch ├── build.gradle ├── example.yml ├── service │ └── web │ │ └── index.html └── src │ └── main │ ├── java │ └── com │ │ └── palantir │ │ └── indexpage │ │ └── example │ │ └── ExampleApplication.java │ └── resources │ └── service │ └── web │ └── index.html ├── dropwizard-index-page ├── build.gradle └── src │ ├── main │ └── java │ │ └── com │ │ └── palantir │ │ └── indexpage │ │ ├── ClasspathIndexPage.java │ │ ├── FileSystemIndexPage.java │ │ ├── IndexPage.java │ │ ├── IndexPageBundle.java │ │ ├── IndexPageConfigurable.java │ │ └── IndexPageServlet.java │ └── test │ ├── java │ └── com │ │ └── palantir │ │ └── indexpage │ │ ├── ClassPathIndexPageTests.java │ │ ├── FileSystemIndexPageTests.java │ │ ├── IndexPageBundleServingFromClasspathTest.java │ │ ├── IndexPageBundleServingFromFileSystemTest.java │ │ ├── IndexPageBundleTests.java │ │ ├── IndexPageResources.java │ │ ├── IndexPageServletTests.java │ │ ├── TemporaryFile.java │ │ └── TestApp.java │ └── resources │ ├── example-default.yml │ ├── example.yml │ └── service │ └── web │ ├── index.html │ ├── index2.html │ └── indexInvalid.html ├── gradle.properties ├── gradle ├── jacoco.gradle ├── publish.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── palantir_corporate_cla.pdf ├── palantir_individual_cla.pdf └── settings.gradle /.baseline/checkstyle/checkstyle-suppressions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /.baseline/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | -------------------------------------------------------------------------------- /.baseline/copyright/apache-2.0.txt: -------------------------------------------------------------------------------- 1 | Copyright ${today.year} Palantir Technologies, Inc. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /.baseline/eclipse/dynamic/dotfile.checkstyle: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /.baseline/eclipse/dynamic/dotfile.settings/edu.umd.cs.findbugs.core.prefs: -------------------------------------------------------------------------------- 1 | #FindBugs User Preferences 2 | #Sun Mar 02 18:15:35 EST 2014 3 | cloud_id=edu.umd.cs.findbugs.cloud.doNothingCloud 4 | detectorAppendingToAnObjectOutputStream=AppendingToAnObjectOutputStream|true 5 | detectorAtomicityProblem=AtomicityProblem|true 6 | detectorBadAppletConstructor=BadAppletConstructor|false 7 | detectorBadResultSetAccess=BadResultSetAccess|true 8 | detectorBadSyntaxForRegularExpression=BadSyntaxForRegularExpression|true 9 | detectorBadUseOfReturnValue=BadUseOfReturnValue|true 10 | detectorBadlyOverriddenAdapter=BadlyOverriddenAdapter|true 11 | detectorBooleanReturnNull=BooleanReturnNull|true 12 | detectorBuildInterproceduralCallGraph=BuildInterproceduralCallGraph|false 13 | detectorBuildObligationPolicyDatabase=BuildObligationPolicyDatabase|true 14 | detectorCallToUnsupportedMethod=CallToUnsupportedMethod|false 15 | detectorCalledMethods=CalledMethods|true 16 | detectorCheckCalls=CheckCalls|false 17 | detectorCheckExpectedWarnings=CheckExpectedWarnings|false 18 | detectorCheckImmutableAnnotation=CheckImmutableAnnotation|true 19 | detectorCheckRelaxingNullnessAnnotation=CheckRelaxingNullnessAnnotation|true 20 | detectorCheckTypeQualifiers=CheckTypeQualifiers|true 21 | detectorCloneIdiom=CloneIdiom|true 22 | detectorComparatorIdiom=ComparatorIdiom|true 23 | detectorConfusedInheritance=ConfusedInheritance|true 24 | detectorConfusionBetweenInheritedAndOuterMethod=ConfusionBetweenInheritedAndOuterMethod|true 25 | detectorCovariantArrayAssignment=CovariantArrayAssignment|false 26 | detectorCrossSiteScripting=CrossSiteScripting|true 27 | detectorDefaultEncodingDetector=DefaultEncodingDetector|true 28 | detectorDoInsideDoPrivileged=DoInsideDoPrivileged|true 29 | detectorDontCatchIllegalMonitorStateException=DontCatchIllegalMonitorStateException|true 30 | detectorDontIgnoreResultOfPutIfAbsent=DontIgnoreResultOfPutIfAbsent|true 31 | detectorDontUseEnum=DontUseEnum|true 32 | detectorDroppedException=DroppedException|true 33 | detectorDumbMethodInvocations=DumbMethodInvocations|true 34 | detectorDumbMethods=DumbMethods|true 35 | detectorDuplicateBranches=DuplicateBranches|true 36 | detectorEmptyZipFileEntry=EmptyZipFileEntry|true 37 | detectorEqualsOperandShouldHaveClassCompatibleWithThis=EqualsOperandShouldHaveClassCompatibleWithThis|true 38 | detectorExplicitSerialization=ExplicitSerialization|true 39 | detectorFieldItemSummary=FieldItemSummary|true 40 | detectorFinalizerNullsFields=FinalizerNullsFields|true 41 | detectorFindBadCast2=FindBadCast2|true 42 | detectorFindBadForLoop=FindBadForLoop|true 43 | detectorFindBugsSummaryStats=FindBugsSummaryStats|true 44 | detectorFindCircularDependencies=FindCircularDependencies|false 45 | detectorFindComparatorProblems=FindComparatorProblems|true 46 | detectorFindDeadLocalStores=FindDeadLocalStores|true 47 | detectorFindDoubleCheck=FindDoubleCheck|true 48 | detectorFindEmptySynchronizedBlock=FindEmptySynchronizedBlock|true 49 | detectorFindFieldSelfAssignment=FindFieldSelfAssignment|true 50 | detectorFindFinalizeInvocations=FindFinalizeInvocations|true 51 | detectorFindFloatEquality=FindFloatEquality|true 52 | detectorFindHEmismatch=FindHEmismatch|true 53 | detectorFindInconsistentSync2=FindInconsistentSync2|true 54 | detectorFindJSR166LockMonitorenter=FindJSR166LockMonitorenter|true 55 | detectorFindLocalSelfAssignment2=FindLocalSelfAssignment2|true 56 | detectorFindMaskedFields=FindMaskedFields|true 57 | detectorFindMismatchedWaitOrNotify=FindMismatchedWaitOrNotify|true 58 | detectorFindNakedNotify=FindNakedNotify|true 59 | detectorFindNonShortCircuit=FindNonShortCircuit|true 60 | detectorFindNullDeref=FindNullDeref|true 61 | detectorFindNullDerefsInvolvingNonShortCircuitEvaluation=FindNullDerefsInvolvingNonShortCircuitEvaluation|true 62 | detectorFindOpenStream=FindOpenStream|true 63 | detectorFindPuzzlers=FindPuzzlers|true 64 | detectorFindRefComparison=FindRefComparison|true 65 | detectorFindReturnRef=FindReturnRef|true 66 | detectorFindRoughConstants=FindRoughConstants|true 67 | detectorFindRunInvocations=FindRunInvocations|true 68 | detectorFindSelfComparison=FindSelfComparison|true 69 | detectorFindSelfComparison2=FindSelfComparison2|true 70 | detectorFindSleepWithLockHeld=FindSleepWithLockHeld|true 71 | detectorFindSpinLoop=FindSpinLoop|true 72 | detectorFindSqlInjection=FindSqlInjection|true 73 | detectorFindTwoLockWait=FindTwoLockWait|true 74 | detectorFindUncalledPrivateMethods=FindUncalledPrivateMethods|true 75 | detectorFindUnconditionalWait=FindUnconditionalWait|true 76 | detectorFindUninitializedGet=FindUninitializedGet|true 77 | detectorFindUnrelatedTypesInGenericContainer=FindUnrelatedTypesInGenericContainer|true 78 | detectorFindUnreleasedLock=FindUnreleasedLock|true 79 | detectorFindUnsatisfiedObligation=FindUnsatisfiedObligation|true 80 | detectorFindUnsyncGet=FindUnsyncGet|true 81 | detectorFindUseOfNonSerializableValue=FindUseOfNonSerializableValue|true 82 | detectorFindUselessControlFlow=FindUselessControlFlow|true 83 | detectorFindUselessObjects=FindUselessObjects|true 84 | detectorFormatStringChecker=FormatStringChecker|true 85 | detectorFunctionsThatMightBeMistakenForProcedures=FunctionsThatMightBeMistakenForProcedures|true 86 | detectorHugeSharedStringConstants=HugeSharedStringConstants|true 87 | detectorIDivResultCastToDouble=IDivResultCastToDouble|true 88 | detectorIncompatMask=IncompatMask|true 89 | detectorInconsistentAnnotations=InconsistentAnnotations|true 90 | detectorInefficientMemberAccess=InefficientMemberAccess|false 91 | detectorInefficientToArray=InefficientToArray|true 92 | detectorInfiniteLoop=InfiniteLoop|true 93 | detectorInfiniteRecursiveLoop=InfiniteRecursiveLoop|true 94 | detectorInheritanceUnsafeGetResource=InheritanceUnsafeGetResource|true 95 | detectorInitializationChain=InitializationChain|true 96 | detectorInitializeNonnullFieldsInConstructor=InitializeNonnullFieldsInConstructor|true 97 | detectorInstantiateStaticClass=InstantiateStaticClass|true 98 | detectorIntCast2LongAsInstant=IntCast2LongAsInstant|true 99 | detectorInvalidJUnitTest=InvalidJUnitTest|true 100 | detectorIteratorIdioms=IteratorIdioms|true 101 | detectorLazyInit=LazyInit|true 102 | detectorLoadOfKnownNullValue=LoadOfKnownNullValue|true 103 | detectorLostLoggerDueToWeakReference=LostLoggerDueToWeakReference|true 104 | detectorMethodReturnCheck=MethodReturnCheck|true 105 | detectorMethods=Methods|true 106 | detectorMultithreadedInstanceAccess=MultithreadedInstanceAccess|true 107 | detectorMutableEnum=MutableEnum|true 108 | detectorMutableLock=MutableLock|true 109 | detectorMutableStaticFields=MutableStaticFields|true 110 | detectorNaming=Naming|true 111 | detectorNoise=Noise|false 112 | detectorNoiseNullDeref=NoiseNullDeref|false 113 | detectorNoteAnnotationRetention=NoteAnnotationRetention|true 114 | detectorNoteCheckReturnValueAnnotations=NoteCheckReturnValueAnnotations|true 115 | detectorNoteDirectlyRelevantTypeQualifiers=NoteDirectlyRelevantTypeQualifiers|true 116 | detectorNoteJCIPAnnotation=NoteJCIPAnnotation|true 117 | detectorNoteNonNullAnnotations=NoteNonNullAnnotations|true 118 | detectorNoteNonnullReturnValues=NoteNonnullReturnValues|true 119 | detectorNoteSuppressedWarnings=NoteSuppressedWarnings|true 120 | detectorNoteUnconditionalParamDerefs=NoteUnconditionalParamDerefs|true 121 | detectorNumberConstructor=NumberConstructor|true 122 | detectorOptionalReturnNull=OptionalReturnNull|true 123 | detectorOverridingEqualsNotSymmetrical=OverridingEqualsNotSymmetrical|true 124 | detectorPreferZeroLengthArrays=PreferZeroLengthArrays|true 125 | detectorPublicSemaphores=PublicSemaphores|false 126 | detectorQuestionableBooleanAssignment=QuestionableBooleanAssignment|true 127 | detectorReadOfInstanceFieldInMethodInvokedByConstructorInSuperclass=ReadOfInstanceFieldInMethodInvokedByConstructorInSuperclass|true 128 | detectorReadReturnShouldBeChecked=ReadReturnShouldBeChecked|true 129 | detectorRedundantConditions=RedundantConditions|true 130 | detectorRedundantInterfaces=RedundantInterfaces|true 131 | detectorReflectiveClasses=ReflectiveClasses|true 132 | detectorRepeatedConditionals=RepeatedConditionals|true 133 | detectorResolveAllReferences=ResolveAllReferences|false 134 | detectorRuntimeExceptionCapture=RuntimeExceptionCapture|true 135 | detectorSerializableIdiom=SerializableIdiom|true 136 | detectorStartInConstructor=StartInConstructor|true 137 | detectorStaticCalendarDetector=StaticCalendarDetector|true 138 | detectorStringConcatenation=StringConcatenation|true 139 | detectorSuperfluousInstanceOf=SuperfluousInstanceOf|true 140 | detectorSuspiciousThreadInterrupted=SuspiciousThreadInterrupted|true 141 | detectorSwitchFallthrough=SwitchFallthrough|true 142 | detectorSynchronizationOnSharedBuiltinConstant=SynchronizationOnSharedBuiltinConstant|true 143 | detectorSynchronizeAndNullCheckField=SynchronizeAndNullCheckField|true 144 | detectorSynchronizeOnClassLiteralNotGetClass=SynchronizeOnClassLiteralNotGetClass|true 145 | detectorSynchronizingOnContentsOfFieldToProtectField=SynchronizingOnContentsOfFieldToProtectField|true 146 | detectorTestASM=TestASM|false 147 | detectorTestDataflowAnalysis=TestDataflowAnalysis|false 148 | detectorTestingGround=TestingGround|false 149 | detectorTestingGround2=TestingGround2|false 150 | detectorTrainFieldStoreTypes=TrainFieldStoreTypes|true 151 | detectorTrainLongInstantfParams=TrainLongInstantfParams|true 152 | detectorTrainNonNullAnnotations=TrainNonNullAnnotations|true 153 | detectorTrainUnconditionalDerefParams=TrainUnconditionalDerefParams|true 154 | detectorURLProblems=URLProblems|true 155 | detectorUncallableMethodOfAnonymousClass=UncallableMethodOfAnonymousClass|true 156 | detectorUnnecessaryMath=UnnecessaryMath|true 157 | detectorUnreadFields=UnreadFields|true 158 | detectorUselessSubclassMethod=UselessSubclassMethod|true 159 | detectorVarArgsProblems=VarArgsProblems|true 160 | detectorVolatileUsage=VolatileUsage|true 161 | detectorWaitInLoop=WaitInLoop|true 162 | detectorWrongMapIterator=WrongMapIterator|true 163 | detectorXMLFactoryBypass=XMLFactoryBypass|true 164 | detector_threshold=2 165 | effort=max 166 | excludefilter0=${configDir}/findbugs/excludeFilter.xml|true 167 | filter_settings=Medium|BAD_PRACTICE,CORRECTNESS,EXPERIMENTAL,I18N,MALICIOUS_CODE,MT_CORRECTNESS,PERFORMANCE,SECURITY,STYLE|false|20 168 | filter_settings_neg=NOISE| 169 | plugin0=edu.umd.cs.findbugs.plugins.findbugsCommunalCloud|false 170 | plugin1=edu.umd.cs.findbugs.plugins.webCloud|false 171 | run_at_full_build=true 172 | -------------------------------------------------------------------------------- /.baseline/eclipse/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | org.eclipse.jdt.core.codeComplete.argumentPrefixes= 2 | org.eclipse.jdt.core.codeComplete.argumentSuffixes= 3 | org.eclipse.jdt.core.codeComplete.fieldPrefixes= 4 | org.eclipse.jdt.core.codeComplete.fieldSuffixes= 5 | org.eclipse.jdt.core.codeComplete.localPrefixes= 6 | org.eclipse.jdt.core.codeComplete.localSuffixes= 7 | org.eclipse.jdt.core.codeComplete.staticFieldPrefixes= 8 | org.eclipse.jdt.core.codeComplete.staticFieldSuffixes= 9 | org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes= 10 | org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes= 11 | org.eclipse.jdt.core.compiler.annotation.inheritNullAnnotations=enabled 12 | org.eclipse.jdt.core.compiler.annotation.missingNonNullByDefaultAnnotation=ignore 13 | org.eclipse.jdt.core.compiler.annotation.nonnull=javax.annotation.Nonnull 14 | org.eclipse.jdt.core.compiler.annotation.nullable=javax.annotation.CheckForNull 15 | org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled 16 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 17 | org.eclipse.jdt.core.compiler.codegen.methodParameters=generate 18 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=${javaTargetVersion} 19 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 20 | org.eclipse.jdt.core.compiler.compliance=${javaTargetVersion} 21 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 22 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 23 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 24 | org.eclipse.jdt.core.compiler.doc.comment.support=enabled 25 | org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=ignore 26 | org.eclipse.jdt.core.compiler.processAnnotations=enabled 27 | org.eclipse.jdt.core.compiler.source=${javaSourceVersion} 28 | org.eclipse.jdt.core.formatter.align_type_members_on_columns=false 29 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=16 30 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0 31 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant=16 32 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call=16 33 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation=16 34 | org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression=16 35 | org.eclipse.jdt.core.formatter.alignment_for_assignment=32 36 | org.eclipse.jdt.core.formatter.alignment_for_binary_expression=16 37 | org.eclipse.jdt.core.formatter.alignment_for_compact_if=16 38 | org.eclipse.jdt.core.formatter.alignment_for_conditional_expression=80 39 | org.eclipse.jdt.core.formatter.alignment_for_enum_constants=0 40 | org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer=16 41 | org.eclipse.jdt.core.formatter.alignment_for_method_declaration=0 42 | org.eclipse.jdt.core.formatter.alignment_for_multiple_fields=16 43 | org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration=16 44 | org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration=16 45 | org.eclipse.jdt.core.formatter.alignment_for_resources_in_try=80 46 | org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation=16 47 | org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration=16 48 | org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration=16 49 | org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration=16 50 | org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration=16 51 | org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration=16 52 | org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch=16 53 | org.eclipse.jdt.core.formatter.blank_lines_after_imports=1 54 | org.eclipse.jdt.core.formatter.blank_lines_after_package=1 55 | org.eclipse.jdt.core.formatter.blank_lines_before_field=0 56 | org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration=0 57 | org.eclipse.jdt.core.formatter.blank_lines_before_imports=1 58 | org.eclipse.jdt.core.formatter.blank_lines_before_member_type=1 59 | org.eclipse.jdt.core.formatter.blank_lines_before_method=1 60 | org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk=1 61 | org.eclipse.jdt.core.formatter.blank_lines_before_package=0 62 | org.eclipse.jdt.core.formatter.blank_lines_between_import_groups=1 63 | org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations=1 64 | org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration=end_of_line 65 | org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration=end_of_line 66 | org.eclipse.jdt.core.formatter.brace_position_for_array_initializer=end_of_line 67 | org.eclipse.jdt.core.formatter.brace_position_for_block=end_of_line 68 | org.eclipse.jdt.core.formatter.brace_position_for_block_in_case=end_of_line 69 | org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration=end_of_line 70 | org.eclipse.jdt.core.formatter.brace_position_for_enum_constant=end_of_line 71 | org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration=end_of_line 72 | org.eclipse.jdt.core.formatter.brace_position_for_lambda_body=end_of_line 73 | org.eclipse.jdt.core.formatter.brace_position_for_method_declaration=end_of_line 74 | org.eclipse.jdt.core.formatter.brace_position_for_switch=end_of_line 75 | org.eclipse.jdt.core.formatter.brace_position_for_type_declaration=end_of_line 76 | org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment=false 77 | org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment=false 78 | org.eclipse.jdt.core.formatter.comment.format_block_comments=true 79 | org.eclipse.jdt.core.formatter.comment.format_header=false 80 | org.eclipse.jdt.core.formatter.comment.format_html=true 81 | org.eclipse.jdt.core.formatter.comment.format_javadoc_comments=true 82 | org.eclipse.jdt.core.formatter.comment.format_line_comments=true 83 | org.eclipse.jdt.core.formatter.comment.format_source_code=true 84 | org.eclipse.jdt.core.formatter.comment.indent_parameter_description=false 85 | org.eclipse.jdt.core.formatter.comment.indent_root_tags=true 86 | org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags=insert 87 | org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter=insert 88 | org.eclipse.jdt.core.formatter.comment.line_length=120 89 | org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries=true 90 | org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries=true 91 | org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments=false 92 | org.eclipse.jdt.core.formatter.compact_else_if=true 93 | org.eclipse.jdt.core.formatter.continuation_indentation=2 94 | org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer=2 95 | org.eclipse.jdt.core.formatter.disabling_tag=@formatter\\:off 96 | org.eclipse.jdt.core.formatter.enabling_tag=@formatter\\:on 97 | org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line=false 98 | org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column=true 99 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header=true 100 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header=true 101 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header=true 102 | org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header=true 103 | org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases=true 104 | org.eclipse.jdt.core.formatter.indent_empty_lines=false 105 | org.eclipse.jdt.core.formatter.indent_statements_compare_to_block=true 106 | org.eclipse.jdt.core.formatter.indent_statements_compare_to_body=true 107 | org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases=true 108 | org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch=true 109 | org.eclipse.jdt.core.formatter.indentation.size=4 110 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field=insert 111 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable=insert 112 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method=insert 113 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package=insert 114 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter=do not insert 115 | org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type=insert 116 | org.eclipse.jdt.core.formatter.insert_new_line_after_label=do not insert 117 | org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer=do not insert 118 | org.eclipse.jdt.core.formatter.insert_new_line_after_type_annotation=do not insert 119 | org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing=insert 120 | org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement=do not insert 121 | org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer=do not insert 122 | org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement=do not insert 123 | org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement=do not insert 124 | org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement=do not insert 125 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration=do not insert 126 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration=do not insert 127 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block=do not insert 128 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant=do not insert 129 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration=do not insert 130 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body=do not insert 131 | org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration=do not insert 132 | org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter=insert 133 | org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator=insert 134 | org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation=do not insert 135 | org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration=do not insert 136 | org.eclipse.jdt.core.formatter.insert_space_after_binary_operator=insert 137 | org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments=do not insert 138 | org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters=insert 139 | org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block=insert 140 | org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast=insert 141 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert=insert 142 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case=insert 143 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional=insert 144 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for=insert 145 | org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement=insert 146 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression=insert 147 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation=insert 148 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer=insert 149 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters=insert 150 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws=insert 151 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments=insert 152 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations=insert 153 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments=insert 154 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments=insert 155 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits=insert 156 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters=insert 157 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws=insert 158 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments=insert 159 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations=insert 160 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations=insert 161 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference=insert 162 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces=insert 163 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments=insert 164 | org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters=insert 165 | org.eclipse.jdt.core.formatter.insert_space_after_ellipsis=insert 166 | org.eclipse.jdt.core.formatter.insert_space_after_lambda_arrow=insert 167 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference=do not insert 168 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments=do not insert 169 | org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters=do not insert 170 | org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer=do not insert 171 | org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression=do not insert 172 | org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference=do not insert 173 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation=do not insert 174 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast=do not insert 175 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch=do not insert 176 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration=do not insert 177 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant=do not insert 178 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for=do not insert 179 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if=do not insert 180 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration=do not insert 181 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation=do not insert 182 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression=do not insert 183 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch=do not insert 184 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized=do not insert 185 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try=do not insert 186 | org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while=do not insert 187 | org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator=do not insert 188 | org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator=do not insert 189 | org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional=insert 190 | org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard=do not insert 191 | org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for=insert 192 | org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources=insert 193 | org.eclipse.jdt.core.formatter.insert_space_after_unary_operator=do not insert 194 | org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter=insert 195 | org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator=insert 196 | org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration=insert 197 | org.eclipse.jdt.core.formatter.insert_space_before_binary_operator=insert 198 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference=do not insert 199 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments=do not insert 200 | org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters=do not insert 201 | org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer=do not insert 202 | org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression=do not insert 203 | org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference=do not insert 204 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation=do not insert 205 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast=do not insert 206 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch=do not insert 207 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration=do not insert 208 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant=do not insert 209 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for=do not insert 210 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if=do not insert 211 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration=do not insert 212 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation=do not insert 213 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression=do not insert 214 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch=do not insert 215 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized=do not insert 216 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try=do not insert 217 | org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while=do not insert 218 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert=insert 219 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case=do not insert 220 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional=insert 221 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default=do not insert 222 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for=insert 223 | org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement=do not insert 224 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression=do not insert 225 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation=do not insert 226 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer=do not insert 227 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters=do not insert 228 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws=do not insert 229 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments=do not insert 230 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations=do not insert 231 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments=do not insert 232 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments=do not insert 233 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits=do not insert 234 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters=do not insert 235 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws=do not insert 236 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments=do not insert 237 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations=do not insert 238 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations=do not insert 239 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference=do not insert 240 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces=do not insert 241 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments=do not insert 242 | org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters=do not insert 243 | org.eclipse.jdt.core.formatter.insert_space_before_ellipsis=do not insert 244 | org.eclipse.jdt.core.formatter.insert_space_before_lambda_arrow=insert 245 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference=do not insert 246 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments=do not insert 247 | org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters=do not insert 248 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration=insert 249 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration=insert 250 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer=insert 251 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block=insert 252 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration=insert 253 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant=insert 254 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration=insert 255 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration=insert 256 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch=insert 257 | org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration=insert 258 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression=do not insert 259 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference=do not insert 260 | org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference=do not insert 261 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation=do not insert 262 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration=do not insert 263 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch=insert 264 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration=do not insert 265 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant=do not insert 266 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for=insert 267 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if=insert 268 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration=do not insert 269 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation=do not insert 270 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression=do not insert 271 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch=insert 272 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized=insert 273 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try=insert 274 | org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while=insert 275 | org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return=insert 276 | org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw=insert 277 | org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator=do not insert 278 | org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator=do not insert 279 | org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional=insert 280 | org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard=do not insert 281 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon=do not insert 282 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for=do not insert 283 | org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources=do not insert 284 | org.eclipse.jdt.core.formatter.insert_space_before_unary_operator=do not insert 285 | org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference=do not insert 286 | org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer=do not insert 287 | org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression=do not insert 288 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration=do not insert 289 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration=do not insert 290 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant=do not insert 291 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration=do not insert 292 | org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation=do not insert 293 | org.eclipse.jdt.core.formatter.join_lines_in_comments=true 294 | org.eclipse.jdt.core.formatter.join_wrapped_lines=false 295 | org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line=false 296 | org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line=false 297 | org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line=false 298 | org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line=false 299 | org.eclipse.jdt.core.formatter.lineSplit=120 300 | org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column=false 301 | org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column=false 302 | org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body=0 303 | org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve=1 304 | org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line=true 305 | org.eclipse.jdt.core.formatter.tabulation.char=space 306 | org.eclipse.jdt.core.formatter.tabulation.size=4 307 | org.eclipse.jdt.core.formatter.use_on_off_tags=false 308 | org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations=false 309 | org.eclipse.jdt.core.formatter.wrap_before_binary_operator=true 310 | org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch=true 311 | org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested=true 312 | -------------------------------------------------------------------------------- /.baseline/eclipse/static/dotfile.settings/edu.umd.cs.findbugs.plugin.eclipse.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | edu.umd.cs.findbugs.plugin.eclipse.findbugsMarkerOfConcern=Warning 3 | edu.umd.cs.findbugs.plugin.eclipse.findbugsMarkerScariest=Error 4 | edu.umd.cs.findbugs.plugin.eclipse.findbugsMarkerScary=Warning 5 | edu.umd.cs.findbugs.plugin.eclipse.findbugsMarkerTroubling=Warning 6 | -------------------------------------------------------------------------------- /.baseline/eclipse/static/dotfile.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | editor_save_participant_org.eclipse.jdt.ui.postsavelistener.cleanup=true 3 | formatter_profile=_Baseline Profile 4 | formatter_settings_version=12 5 | org.eclipse.jdt.ui.exception.name=e 6 | org.eclipse.jdt.ui.gettersetter.use.is=false 7 | org.eclipse.jdt.ui.ignorelowercasenames=true 8 | org.eclipse.jdt.ui.importorder=; 9 | org.eclipse.jdt.ui.javadoc=false 10 | org.eclipse.jdt.ui.keywordthis=false 11 | org.eclipse.jdt.ui.ondemandthreshold=99 12 | org.eclipse.jdt.ui.overrideannotation=true 13 | org.eclipse.jdt.ui.staticondemandthreshold=99 14 | org.eclipse.jdt.ui.text.custom_code_templates=