├── .github ├── dependabot.yml └── workflows │ ├── README.MD │ ├── callUpdateTarget.yml │ ├── checkDependencies.yml │ ├── checkMergeCommits.yml │ ├── checkVersions.yml │ ├── cleanCode.yml │ ├── codeQLworkflow.yml │ ├── licensecheck.yml │ ├── mavenBuild.yml │ ├── pr-checks.yml │ ├── publishTestResults.yml │ ├── publishVersionCheckResults.yml │ ├── updateTarget.yml │ ├── verifyFreezePeriod.yml │ └── version-increments.yml ├── .gitignore ├── .gitmodules ├── .mvn ├── extensions.xml ├── jvm.config └── maven.config ├── .project ├── .settings ├── org.eclipse.core.resources.prefs ├── org.eclipse.core.runtime.prefs └── org.eclipse.wst.xml.core.prefs ├── CONTRIBUTING ├── CONTRIBUTING.md ├── JenkinsJobs ├── AutomatedTests │ ├── FOLDER.groovy │ └── I_unit_tests.groovy ├── Builds │ ├── DockerImagesBuild.jenkinsfile │ ├── FOLDER.groovy │ ├── build.jenkinsfile │ └── markBuild.groovy ├── Cleanup │ ├── FOLDER.groovy │ ├── cleanupDLsite.groovy │ ├── cleanupReleaseArtifacts.groovy │ ├── dailyCleanOldBuilds.groovy │ └── pruneDailyRepos.groovy ├── JobDSL.json ├── Releng │ ├── FOLDER.groovy │ ├── checkCompositesValidity.groovy │ ├── collectResults.groovy │ ├── createGenericComposites.groovy │ ├── createMaintenanceBranch.groovy │ ├── makeVisible.groovy │ ├── newStreamRepos.groovy │ ├── prepareNextDevCycle.jenkinsfile │ ├── publishToMaven.jenkinsfile │ ├── renameAndPromote.groovy │ ├── tagEclipseRelease.groovy │ └── updateIndex.groovy ├── SmokeTests │ ├── FOLDER.groovy │ └── StartSmokeTests.jenkinsfile └── YBuilds │ ├── FOLDER.groovy │ └── Y_unit_tests.groovy ├── Jenkinsfile ├── LICENSE ├── NOTICE ├── README.md ├── RELEASE.md ├── RELENG.md ├── cje-production ├── buildproperties.txt ├── cleaners │ ├── cleanupEquinox.sh │ ├── cleanupNightlyRepo.sh │ └── dailyCleanDownloads.sh ├── dockerfiles │ ├── centos-gtk4-mutter │ │ └── 9-gtk4 │ │ │ ├── Dockerfile │ │ │ └── scripts │ │ │ ├── uid_entrypoint │ │ │ ├── xstartup_metacity.sh │ │ │ └── xstartup_mutter.sh │ ├── debian │ │ ├── swtgtk3nativebuild │ │ │ ├── Dockerfile │ │ │ └── scripts │ │ │ │ └── uid_entrypoint │ │ └── swtnativebuild │ │ │ ├── Dockerfile │ │ │ └── scripts │ │ │ └── uid_entrypoint │ └── opensuse-gtk3-metacity │ │ └── 15-gtk3 │ │ ├── Dockerfile │ │ └── scripts │ │ ├── uid_entrypoint │ │ ├── xstartup_metacity.sh │ │ └── xstartup_mutter.sh ├── gitCache │ └── readme.txt ├── master-build.sh ├── mbscripts │ ├── mb010_createEnvfiles.sh │ ├── mb020_createBaseBuilder.sh │ ├── mb030_downloadBuildToCompare.sh │ ├── mb100_cloneRepos.sh │ ├── mb110_tagBuildInputs.sh │ ├── mb220_buildSdkPatch.sh │ ├── mb300_gatherEclipseParts.sh │ ├── mb310_gatherEquinoxParts.sh │ ├── mb500_createRepoReports.sh │ ├── mb510_createApiToolsReports.sh │ ├── mb600_promoteEclipse.sh │ ├── mb610_promoteEquinox.sh │ └── mb620_promoteUpdateSite.sh ├── promotion │ ├── makeVisible.sh │ └── promoteSites.sh ├── readme.txt ├── scripts │ ├── addToComposite.xml │ ├── checkComposites │ │ └── checkComposites.sh │ ├── collectTestResults.xml │ ├── common-functions.shsource │ ├── notarizeMacApp.sh │ ├── publish.xml │ ├── removeFromComposite.xml │ └── updateGenericComposites.xml ├── siteDir │ └── readme.txt └── streams │ ├── description.txt │ ├── repositories_java25.txt │ └── repositories_master.txt ├── eclipse-platform-parent ├── pom.xml └── saveproperties │ └── mavenproperties.properties ├── eclipse-platform-sources ├── pom.xml └── sources.xml ├── eclipse.platform.common ├── bundles │ ├── .gitignore │ ├── org.eclipse.jdt.doc.isv │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── book.css │ │ ├── build.properties │ │ ├── cpy.png │ │ ├── forceQualifierUpdate.txt │ │ ├── guide │ │ │ ├── CopyrightTabPage.html │ │ │ ├── images │ │ │ │ ├── annotation_processing.png │ │ │ │ ├── compiler_dialog.png │ │ │ │ ├── factory_path.png │ │ │ │ ├── javanavigator.png │ │ │ │ ├── openables.png │ │ │ │ └── sourceelements.png │ │ │ ├── jdt_api.htm │ │ │ ├── jdt_api_classpath.htm │ │ │ ├── jdt_api_codeassist.htm │ │ │ ├── jdt_api_codeformatter.htm │ │ │ ├── jdt_api_compile.htm │ │ │ ├── jdt_api_contributing_a_cleanup.htm │ │ │ ├── jdt_api_contributing_a_quickfix.htm │ │ │ ├── jdt_api_editors.htm │ │ │ ├── jdt_api_junit.htm │ │ │ ├── jdt_api_manip.htm │ │ │ ├── jdt_api_open_editor.htm │ │ │ ├── jdt_api_options.htm │ │ │ ├── jdt_api_prompter.htm │ │ │ ├── jdt_api_render.htm │ │ │ ├── jdt_api_run.htm │ │ │ ├── jdt_api_search.htm │ │ │ ├── jdt_api_searchindex.htm │ │ │ ├── jdt_api_utility.htm │ │ │ ├── jdt_api_wizards.htm │ │ │ ├── jdt_api_write_jar_file.htm │ │ │ ├── jdt_apt_building_with_apt.htm │ │ │ ├── jdt_apt_getting_started.htm │ │ │ ├── jdt_int.htm │ │ │ ├── jdt_int_apt.htm │ │ │ ├── jdt_int_core.htm │ │ │ ├── jdt_int_debug.htm │ │ │ ├── jdt_int_junit.htm │ │ │ ├── jdt_int_model.htm │ │ │ └── jdt_int_ui.htm │ │ ├── notices.html │ │ ├── pde_basedirs.properties │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── porting │ │ │ ├── 4.10 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.11 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.12 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.13 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.14 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.15 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.16 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.17 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.18 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.19 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.20 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.21 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.22 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.23 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.24 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.25 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.26 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.27 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.28 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.29 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.30 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.31 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.32 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.33 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.34 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.35 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.36 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.4 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.5 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.6 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.7 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.8 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.9 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── eclipse_4_10_porting_guide.html │ │ │ ├── eclipse_4_11_porting_guide.html │ │ │ ├── eclipse_4_12_porting_guide.html │ │ │ ├── eclipse_4_13_porting_guide.html │ │ │ ├── eclipse_4_14_porting_guide.html │ │ │ ├── eclipse_4_15_porting_guide.html │ │ │ ├── eclipse_4_16_porting_guide.html │ │ │ ├── eclipse_4_17_porting_guide.html │ │ │ ├── eclipse_4_18_porting_guide.html │ │ │ ├── eclipse_4_19_porting_guide.html │ │ │ ├── eclipse_4_20_porting_guide.html │ │ │ ├── eclipse_4_21_porting_guide.html │ │ │ ├── eclipse_4_22_porting_guide.html │ │ │ ├── eclipse_4_23_porting_guide.html │ │ │ ├── eclipse_4_24_porting_guide.html │ │ │ ├── eclipse_4_25_porting_guide.html │ │ │ ├── eclipse_4_26_porting_guide.html │ │ │ ├── eclipse_4_27_porting_guide.html │ │ │ ├── eclipse_4_28_porting_guide.html │ │ │ ├── eclipse_4_29_porting_guide.html │ │ │ ├── eclipse_4_30_porting_guide.html │ │ │ ├── eclipse_4_31_porting_guide.html │ │ │ ├── eclipse_4_32_porting_guide.html │ │ │ ├── eclipse_4_33_porting_guide.html │ │ │ ├── eclipse_4_34_porting_guide.html │ │ │ ├── eclipse_4_35_porting_guide.html │ │ │ ├── eclipse_4_36_porting_guide.html │ │ │ ├── eclipse_4_4_porting_guide.html │ │ │ ├── eclipse_4_5_porting_guide.html │ │ │ ├── eclipse_4_6_porting_guide.html │ │ │ ├── eclipse_4_7_porting_guide.html │ │ │ ├── eclipse_4_8_porting_guide.html │ │ │ └── eclipse_4_9_porting_guide.html │ │ ├── questions │ │ │ └── index.html │ │ ├── reference │ │ │ ├── .gitignore │ │ │ ├── extension-points │ │ │ │ └── index.html │ │ │ └── misc │ │ │ │ ├── api-usage-rules.html │ │ │ │ ├── index.html │ │ │ │ └── overview-jdt.html │ │ ├── schema.css │ │ ├── toc.xml │ │ ├── topics_Guide.xml │ │ ├── topics_Porting.xml │ │ ├── topics_Questions.xml │ │ └── topics_Reference.xml │ ├── org.eclipse.jdt.doc.user │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── book.css │ │ ├── build.properties │ │ ├── concepts │ │ │ ├── cbrkpnts.htm │ │ │ ├── cdebugger.htm │ │ │ ├── clocdbug.htm │ │ │ ├── concept-access-rules-combine-rules.htm │ │ │ ├── concept-access-rules.htm │ │ │ ├── concept-build-classpath.htm │ │ │ ├── concept-classpath-variables.htm │ │ │ ├── concept-editor-templates.htm │ │ │ ├── concept-inclusion-exclusion-patterns.htm │ │ │ ├── concept-java-builder.htm │ │ │ ├── concept-java-editor.htm │ │ │ ├── concept-java-perspective.htm │ │ │ ├── concept-java-project.htm │ │ │ ├── concept-java-search.htm │ │ │ ├── concept-java-views-decorators.htm │ │ │ ├── concept-java-views-filtering.htm │ │ │ ├── concept-java-views-presentation.htm │ │ │ ├── concept-java-views-sorting.htm │ │ │ ├── concept-java-views.htm │ │ │ ├── concept-jdt.htm │ │ │ ├── concept-quickfix-assist.htm │ │ │ ├── concept-refactoring.htm │ │ │ ├── concept-string-externalization.htm │ │ │ ├── concept-template-variables.htm │ │ │ ├── cremdbug.htm │ │ │ ├── cscrapbook.htm │ │ │ └── images │ │ │ │ └── qs-37a.png │ │ ├── contexts_APT.xml │ │ ├── contexts_Debugger.xml │ │ ├── contexts_JDT.xml │ │ ├── contexts_JDT_Debugger.xml │ │ ├── contexts_JDT_JUnit.xml │ │ ├── cpy.png │ │ ├── forceQualifierUpdate.txt │ │ ├── gettingStarted │ │ │ ├── images │ │ │ │ ├── active_break_point.png │ │ │ │ ├── add_as_source_folder.svg │ │ │ │ ├── add_linked_source_to_buildpath.svg │ │ │ │ ├── debug_button.png │ │ │ │ ├── edit_undo_refactoring_menu.png │ │ │ │ ├── editor_myscrap_display.png │ │ │ │ ├── editor_myscrap_sysytem_get.png │ │ │ │ ├── editor_mytestcase_field.png │ │ │ │ ├── editor_mytestcase_getters.png │ │ │ │ ├── editor_mytestcase_import.png │ │ │ │ ├── editor_mytestcase_moved.png │ │ │ │ ├── editor_mytestcase_outline_override.png │ │ │ │ ├── editor_testcase.png │ │ │ │ ├── editor_testcase_error_getname.png │ │ │ │ ├── editor_testcase_error_getname_quickfix.png │ │ │ │ ├── editor_testcase_error_hover.png │ │ │ │ ├── editor_testcase_error_unsaved.png │ │ │ │ ├── editor_testcase_search_references.png │ │ │ │ ├── editor_testsuite_extract_method.png │ │ │ │ ├── editor_testsuite_outline_collectinheritedmethod.png │ │ │ │ ├── editor_vectortest.png │ │ │ │ ├── editor_vectortest_content_assist.png │ │ │ │ ├── editor_vectortest_content_assist_t.png │ │ │ │ ├── editor_vectortest_debug.png │ │ │ │ ├── editor_vectortest_for_template.png │ │ │ │ ├── editor_vectortest_for_template_exp.png │ │ │ │ ├── editor_vectortest_for_template_exp_e.png │ │ │ │ ├── editor_vectortest_for_template_exp_expected.png │ │ │ │ ├── editor_vectortest_inspect.png │ │ │ │ ├── editor_vectortest_organized_imports.png │ │ │ │ ├── editor_vectortest_outline_main.png │ │ │ │ ├── editor_vectortest_problem_hover.png │ │ │ │ ├── editor_vectortest_quickoutline.png │ │ │ │ ├── editor_vectortest_testSizeIsThree.png │ │ │ │ ├── editor_vectortest_toarray_template.png │ │ │ │ ├── editor_vectortest_toarray_template_exp.png │ │ │ │ ├── editor_vectortest_toarray_template_integer.png │ │ │ │ ├── extract_method_dialog.png │ │ │ │ ├── extract_method_preview_dialog.png │ │ │ │ ├── generate_getter_setter_dialog.png │ │ │ │ ├── icon_junit_successfull.png │ │ │ │ ├── icon_junit_successfull_workspace_modifed.png │ │ │ │ ├── j2se50 │ │ │ │ │ ├── autobox-coloring.png │ │ │ │ │ ├── autobox.png │ │ │ │ │ ├── compiler-property-page.png │ │ │ │ │ ├── editor_override_annotation_hover.png │ │ │ │ │ ├── enum.png │ │ │ │ │ ├── foreach-inserted.png │ │ │ │ │ ├── foreach-proposal.png │ │ │ │ │ ├── infer-generic.png │ │ │ │ │ ├── inferred-generic.png │ │ │ │ │ ├── quick-fix.png │ │ │ │ │ ├── suppress-applied.png │ │ │ │ │ ├── suppress-proposed.png │ │ │ │ │ ├── unused-warning.png │ │ │ │ │ ├── view_search_listInteger.png │ │ │ │ │ ├── view_search_listInteger_incompatible.png │ │ │ │ │ ├── view_search_listInteger_inexact.png │ │ │ │ │ ├── view_search_listInteger_unfiltered.png │ │ │ │ │ └── wiz_new_java_project_myproject.png │ │ │ │ ├── java7 │ │ │ │ │ ├── add-exceptions-to-existin-catch-clause.png │ │ │ │ │ ├── add-safevarargs-to-declaration.png │ │ │ │ │ ├── add-safevarargs.png │ │ │ │ │ ├── assign-vars.png │ │ │ │ │ ├── combine-catch-blocks.png │ │ │ │ │ ├── content-assist-diamond-1.png │ │ │ │ │ ├── content-assist-diamond-2.png │ │ │ │ │ ├── convert-switch-to-if-else.png │ │ │ │ │ ├── ee-page.png │ │ │ │ │ ├── insert-inferred-type-arguments.png │ │ │ │ │ ├── invokeExact-javadoc.png │ │ │ │ │ ├── mark-occurrences-exception-thrown-by-automatic-close.png │ │ │ │ │ ├── move-exceptions-to-separate-catch-block.png │ │ │ │ │ ├── pde-api-pref-page.png │ │ │ │ │ ├── redundant-specification-of-type-arguments.png │ │ │ │ │ ├── redundant-type-arguments-warning.png │ │ │ │ │ ├── remove-exception.png │ │ │ │ │ ├── remove-safevarargs-1.png │ │ │ │ │ ├── remove-safevarargs-2.png │ │ │ │ │ ├── select-ee.png │ │ │ │ │ ├── surround-with-try-multicatch.png │ │ │ │ │ ├── throwing-exception.png │ │ │ │ │ ├── twr-example.png │ │ │ │ │ ├── twr-warning.png │ │ │ │ │ ├── unhandled-exception-thrown-by-automatic-close.png │ │ │ │ │ └── use-separate-catch-blocks.png │ │ │ │ ├── move_dialog.png │ │ │ │ ├── navigate_open_typehieracrchy.png │ │ │ │ ├── navigate_opendeclaration.png │ │ │ │ ├── navigate_opentype.png │ │ │ │ ├── open_run_dialog.png │ │ │ │ ├── override_implement_dialog.png │ │ │ │ ├── packagefolder_obj.svg │ │ │ │ ├── pref_buildpath.png │ │ │ │ ├── pref_compiler.png │ │ │ │ ├── pref_editor.png │ │ │ │ ├── pref_jre.png │ │ │ │ ├── pref_launch_operation.png │ │ │ │ ├── pref_workspace.png │ │ │ │ ├── previous_searches_dialog.png │ │ │ │ ├── qs-DetectingExistingLayout1.png │ │ │ │ ├── qs-DetectingExistingLayout2.png │ │ │ │ ├── qs-DetectingExistingLayout3.png │ │ │ │ ├── qs-DetectingExistingLayout4.png │ │ │ │ ├── qs-OrganizeSources1.png │ │ │ │ ├── qs-OrganizeSources2.png │ │ │ │ ├── qs-OrganizeSources3.png │ │ │ │ ├── qs-OrganizeSources4.png │ │ │ │ ├── qs-OrganizeSources5.png │ │ │ │ ├── qs-OrganizeSources6.png │ │ │ │ ├── qs-WorkingWithExistingLayout10.png │ │ │ │ ├── qs-WorkingWithExistingLayout11.png │ │ │ │ ├── qs-WorkingWithExistingLayout12.png │ │ │ │ ├── qs-WorkingWithExistingLayout13.png │ │ │ │ ├── qs-WorkingWithExistingLayout14.png │ │ │ │ ├── qs-WorkingWithExistingLayout15.png │ │ │ │ ├── qs-WorkingWithExistingLayout20.png │ │ │ │ ├── qs-WorkingWithExistingLayout21.png │ │ │ │ ├── qs-WorkingWithExistingLayout22.png │ │ │ │ ├── qs-WorkingWithExistingLayout23.png │ │ │ │ ├── qs-WorkingWithExistingLayout24.png │ │ │ │ ├── qs-WorkingWithExistingLayout25.png │ │ │ │ ├── qs-WorkingWithExistingLayout26.png │ │ │ │ ├── qs-WorkingWithExistingLayout27.png │ │ │ │ ├── qs-WorkingWithExistingLayout28.png │ │ │ │ ├── qs-WorkingWithExistingLayout29.png │ │ │ │ ├── qs-WorkingWithExistingLayout30.png │ │ │ │ ├── qs-WorkingWithExistingLayout31.png │ │ │ │ ├── qs-WorkingWithExistingLayout32.png │ │ │ │ ├── qs-WorkingWithExistingLayout33.png │ │ │ │ ├── qs-WorkingWithExistingLayout34.png │ │ │ │ ├── qs-WorkingWithExistingLayout35.png │ │ │ │ ├── qs-WorkingWithExistingLayout36.png │ │ │ │ ├── qs-WorkingWithExistingLayout40.png │ │ │ │ ├── qs-WorkingWithExistingLayout41.png │ │ │ │ ├── qs-WorkingWithExistingLayout42.png │ │ │ │ ├── qs-WorkingWithExistingLayout43.png │ │ │ │ ├── qs-WorkingWithExistingLayout44.png │ │ │ │ ├── qs-WorkingWithExistingLayout45.png │ │ │ │ ├── qs-WorkingWithExistingLayout46.png │ │ │ │ ├── qs-WorkingWithExistingLayout47.png │ │ │ │ ├── qs-WorkingWithExistingLayout48.png │ │ │ │ ├── qs-WorkingWithExistingLayout49.png │ │ │ │ ├── qs-WorkingWithExistingLayout50.png │ │ │ │ ├── qs-WorkingWithExistingLayout51.png │ │ │ │ ├── qs-WorkingWithExistingLayout52.png │ │ │ │ ├── qs-WorkingWithExistingLayout53.png │ │ │ │ ├── qs-WorkingWithExistingLayout54.png │ │ │ │ ├── qs-WorkingWithExistingLayout55.png │ │ │ │ ├── qs-WorkingWithExistingLayout56.png │ │ │ │ ├── qs-WorkingWithExistingLayout57.png │ │ │ │ ├── qs-WorkingWithExistingLayout58.png │ │ │ │ ├── qs-WorkingWithExistingLayout59.png │ │ │ │ ├── qs-WorkingWithExistingLayout5a.png │ │ │ │ ├── qs-WorkingWithExistingLayout5b.png │ │ │ │ ├── qs-WorkingWithExistingLayout60.png │ │ │ │ ├── qs-WorkingWithExistingLayout61.png │ │ │ │ ├── qs-WorkingWithExistingLayout62.png │ │ │ │ ├── qs-WorkingWithExistingLayout63.png │ │ │ │ ├── qs-WorkingWithExistingLayout64.png │ │ │ │ ├── qs-WorkingWithExistingLayout65.png │ │ │ │ ├── qs-WorkingWithExistingLayout66.png │ │ │ │ ├── qs-WorkingWithExistingLayout67.png │ │ │ │ ├── qs-WorkingWithExistingLayout68.png │ │ │ │ ├── qs-WorkingWithExistingLayout69.png │ │ │ │ ├── qs-WorkingWithExistingLayout6a.png │ │ │ │ ├── qs-WorkingWithExistingLayout6b.png │ │ │ │ ├── qs-WorkingWithExistingLayout6c.png │ │ │ │ ├── quickoutline_menu.png │ │ │ │ ├── quickoutline_submethods.png │ │ │ │ ├── quicktype_dialog_setup.png │ │ │ │ ├── quicktype_dialogs.png │ │ │ │ ├── rename_cu_dialog.png │ │ │ │ ├── rename_cu_preview_dialog.png │ │ │ │ ├── replace_local_element.png │ │ │ │ ├── restore_local_history.png │ │ │ │ ├── run_dialog.png │ │ │ │ ├── run_dialog_arguments.png │ │ │ │ ├── run_dialog_junit.png │ │ │ │ ├── run_dropdown.png │ │ │ │ ├── search.svg │ │ │ │ ├── search_file_dialog.png │ │ │ │ ├── search_next.svg │ │ │ │ ├── search_prev.svg │ │ │ │ ├── search_runTest_dialog.png │ │ │ │ ├── select_how.png │ │ │ │ ├── select_java_app_dialog.png │ │ │ │ ├── superclass_selection_dialog.png │ │ │ │ ├── view_console_noarg.png │ │ │ │ ├── view_console_success.png │ │ │ │ ├── view_debug.png │ │ │ │ ├── view_debug_removelaunched.png │ │ │ │ ├── view_debugshell_display.png │ │ │ │ ├── view_debugshell_display_done.png │ │ │ │ ├── view_debugshell_inspect.png │ │ │ │ ├── view_junit_red.png │ │ │ │ ├── view_outline_delete_import.png │ │ │ │ ├── view_outline_search_references.png │ │ │ │ ├── view_outline_testrunner_main.png │ │ │ │ ├── view_outline_testrunner_run.png │ │ │ │ ├── view_outline_vectortest.png │ │ │ │ ├── view_outline_vectortest_filtered.png │ │ │ │ ├── view_package_explorer_junit.png │ │ │ │ ├── view_package_explorer_junit_exp.png │ │ │ │ ├── view_package_explorer_open_type_hierarchy.png │ │ │ │ ├── view_package_explorer_vectortest_error.png │ │ │ │ ├── view_problems_goto.png │ │ │ │ ├── view_search_editor_runTest.png │ │ │ │ ├── view_search_previous.png │ │ │ │ ├── view_search_research_menu.png │ │ │ │ ├── view_search_runTest.png │ │ │ │ ├── view_typehierarchy_testcase.png │ │ │ │ ├── view_typehierarchy_testcase_focused.png │ │ │ │ ├── view_typehierarchy_testcase_menu.png │ │ │ │ ├── view_typehierarchy_testcase_runtest_locked.png │ │ │ │ ├── view_typehierarchy_testcase_small.png │ │ │ │ ├── view_typehierarchy_testcase_subtype.png │ │ │ │ ├── view_typehierarchy_testcase_supertype.png │ │ │ │ ├── view_typehierarchy_testcase_supertype_locked.png │ │ │ │ ├── view_variables_1.png │ │ │ │ ├── view_variables_logical_structure_action.svg │ │ │ │ ├── view_variables_logical_structures.png │ │ │ │ ├── wiz_import_arch.png │ │ │ │ ├── wiz_new_class_dialog.png │ │ │ │ ├── wiz_new_class_dialog_superchecked.png │ │ │ │ ├── wiz_new_project.png │ │ │ │ ├── wiz_new_scrap.png │ │ │ │ ├── wiz_new_suite.png │ │ │ │ ├── wiz_new_testcase.png │ │ │ │ ├── workbench_debug_vectortest.png │ │ │ │ ├── workbench_java_browsing.png │ │ │ │ └── workbench_testcase_errors.png │ │ │ ├── intro │ │ │ │ └── overview.htm │ │ │ ├── qs-10.htm │ │ │ ├── qs-11.htm │ │ │ ├── qs-12.htm │ │ │ ├── qs-13.htm │ │ │ ├── qs-14.htm │ │ │ ├── qs-15.htm │ │ │ ├── qs-2.htm │ │ │ ├── qs-3.htm │ │ │ ├── qs-4.htm │ │ │ ├── qs-6.htm │ │ │ ├── qs-7.htm │ │ │ ├── qs-8.htm │ │ │ ├── qs-9.htm │ │ │ ├── qs-AddMethod.htm │ │ │ ├── qs-BasicTutorial.htm │ │ │ ├── qs-Browsing.htm │ │ │ ├── qs-ContentAssist.htm │ │ │ ├── qs-DetectingExistingLayout.htm │ │ │ ├── qs-EditorTemplates.htm │ │ │ ├── qs-ExtractMethod.htm │ │ │ ├── qs-LocalHistory.htm │ │ │ ├── qs-Navigate.htm │ │ │ ├── qs-OpenJavaEditor.htm │ │ │ ├── qs-OrganizeImports.htm │ │ │ ├── qs-OrganizingSources.htm │ │ │ ├── qs-ProjectConfiguration.htm │ │ │ ├── qs-Quickviews.htm │ │ │ ├── qs-WorkingWithExistingLayout1.htm │ │ │ ├── qs-WorkingWithExistingLayout2.htm │ │ │ ├── qs-WorkingWithExistingLayout3.htm │ │ │ ├── qs-WorkingWithExistingLayout4.htm │ │ │ ├── qs-WorkingWithExistingLayout5.htm │ │ │ ├── qs-WorkingWithExistingLayout6.htm │ │ │ ├── qs-junit.htm │ │ │ ├── qs-with-j2se50.htm │ │ │ ├── qs-with-java-releases.htm │ │ │ └── qs-with-java7.htm │ │ ├── images │ │ │ ├── external-link-ltr-icon.svg │ │ │ ├── org.eclipse.debug.ui │ │ │ │ ├── elcl16 │ │ │ │ │ ├── changevariablevalue_co.svg │ │ │ │ │ ├── collapseall.svg │ │ │ │ │ ├── copy_edit_co.svg │ │ │ │ │ ├── debuglast_co.svg │ │ │ │ │ ├── det_pane_hide.svg │ │ │ │ │ ├── det_pane_right.svg │ │ │ │ │ ├── det_pane_under.svg │ │ │ │ │ ├── disabled_co.svg │ │ │ │ │ ├── disconnect_co.svg │ │ │ │ │ ├── drop_to_frame.svg │ │ │ │ │ ├── edtsrclkup_co.svg │ │ │ │ │ ├── enabled_co.svg │ │ │ │ │ ├── expandall.svg │ │ │ │ │ ├── export_brkpts.svg │ │ │ │ │ ├── import_brkpts.svg │ │ │ │ │ ├── metharg_obj.svg │ │ │ │ │ ├── monitorexpression_tsk.svg │ │ │ │ │ ├── prop_ps.svg │ │ │ │ │ ├── rem_all_co.svg │ │ │ │ │ ├── rem_all_triggers.svg │ │ │ │ │ ├── rem_co.svg │ │ │ │ │ ├── resume_co.svg │ │ │ │ │ ├── runlast_co.svg │ │ │ │ │ ├── runtoline_co.svg │ │ │ │ │ ├── skip_brkp.svg │ │ │ │ │ ├── stepbystep_co.svg │ │ │ │ │ ├── stepinto_co.svg │ │ │ │ │ ├── stepover_co.svg │ │ │ │ │ ├── stepreturn_co.svg │ │ │ │ │ ├── suspend_co.svg │ │ │ │ │ ├── synced.svg │ │ │ │ │ ├── terminate_all_co.svg │ │ │ │ │ ├── terminate_co.svg │ │ │ │ │ ├── terminate_rem_co.svg │ │ │ │ │ ├── tnames_co.svg │ │ │ │ │ ├── var_cntnt_prvdr.svg │ │ │ │ │ ├── writeerr_co.svg │ │ │ │ │ └── writeout_co.svg │ │ │ │ ├── etool16 │ │ │ │ │ ├── debug_exc.svg │ │ │ │ │ ├── run_exc.svg │ │ │ │ │ ├── term_restart.svg │ │ │ │ │ └── watch_exp.svg │ │ │ │ ├── obj16 │ │ │ │ │ ├── brkp_grp.svg │ │ │ │ │ ├── brkp_obj.svg │ │ │ │ │ ├── brkpd_obj.svg │ │ │ │ │ ├── debugt_obj.svg │ │ │ │ │ ├── debugts_obj.svg │ │ │ │ │ ├── debugtt_obj.svg │ │ │ │ │ ├── expression_obj.svg │ │ │ │ │ ├── inst_ptr.svg │ │ │ │ │ ├── inst_ptr_top.svg │ │ │ │ │ ├── ldebug_obj.svg │ │ │ │ │ ├── lrun_obj.svg │ │ │ │ │ ├── osprc_obj.svg │ │ │ │ │ ├── osprct_obj.svg │ │ │ │ │ ├── readwrite_obj.svg │ │ │ │ │ ├── stckframe_obj.svg │ │ │ │ │ ├── stckframe_running_obj.svg │ │ │ │ │ ├── terminatedlaunch_obj.svg │ │ │ │ │ ├── thread_obj.svg │ │ │ │ │ └── threads_obj.svg │ │ │ │ └── ovr16 │ │ │ │ │ ├── error.svg │ │ │ │ │ └── skip_breakpoint_ov.svg │ │ │ ├── org.eclipse.jdt.debug.ui │ │ │ │ ├── elcl16 │ │ │ │ │ ├── all_instances.svg │ │ │ │ │ ├── all_references.svg │ │ │ │ │ ├── autoform_menu.svg │ │ │ │ │ ├── constant_co.svg │ │ │ │ │ ├── exc_catch.svg │ │ │ │ │ ├── sethitcount_co.svg │ │ │ │ │ └── static_co.svg │ │ │ │ ├── etool16 │ │ │ │ │ ├── debug_exc.svg │ │ │ │ │ ├── disp_sbook.svg │ │ │ │ │ ├── insp_sbook.svg │ │ │ │ │ ├── run_exc.svg │ │ │ │ │ ├── run_sbook.svg │ │ │ │ │ ├── term_sbook.svg │ │ │ │ │ └── watch_exp.svg │ │ │ │ ├── obj16 │ │ │ │ │ ├── class_obj.svg │ │ │ │ │ ├── insp_sbook.svg │ │ │ │ │ ├── jexception_obj.svg │ │ │ │ │ ├── jexceptiond_obj.svg │ │ │ │ │ ├── jrtexception_obj.svg │ │ │ │ │ ├── jsbook_obj.svg │ │ │ │ │ ├── jsbook_run_obj.svg │ │ │ │ │ ├── localvariable_obj.svg │ │ │ │ │ ├── monitor_obj.svg │ │ │ │ │ ├── package_obj.svg │ │ │ │ │ ├── read_obj.svg │ │ │ │ │ ├── readwrite_obj.svg │ │ │ │ │ ├── thread_and_monitor_obj.svg │ │ │ │ │ ├── thread_obj.svg │ │ │ │ │ ├── threadgroup_obj.svg │ │ │ │ │ └── write_obj.svg │ │ │ │ └── ovr16 │ │ │ │ │ ├── caught_ovr.svg │ │ │ │ │ ├── conditional_ovr.svg │ │ │ │ │ ├── contention_ovr.svg │ │ │ │ │ ├── contentionformonitor_ovr.svg │ │ │ │ │ ├── entry_ovr.svg │ │ │ │ │ ├── exit_ovr.svg │ │ │ │ │ ├── installed_ovr.svg │ │ │ │ │ ├── owned_ovr.svg │ │ │ │ │ ├── ownsmonitor_ovr.svg │ │ │ │ │ ├── scoped_ovr.svg │ │ │ │ │ ├── uncaught_ovr.svg │ │ │ │ │ └── warning_co.svg │ │ │ ├── org.eclipse.jdt.junit │ │ │ │ ├── elcl16 │ │ │ │ │ ├── hierarchicalLayout.svg │ │ │ │ │ ├── history_list.svg │ │ │ │ │ ├── lock.svg │ │ │ │ │ ├── relaunch.svg │ │ │ │ │ ├── relaunchf.svg │ │ │ │ │ ├── select_next.svg │ │ │ │ │ ├── select_prev.svg │ │ │ │ │ └── stop.svg │ │ │ │ ├── etool16 │ │ │ │ │ └── new_testcase.svg │ │ │ │ ├── eview16 │ │ │ │ │ ├── juniterr.svg │ │ │ │ │ └── junitsucc.svg │ │ │ │ ├── obj16 │ │ │ │ │ ├── exc_catch.svg │ │ │ │ │ ├── failures.svg │ │ │ │ │ ├── stkfrm_obj.svg │ │ │ │ │ ├── test.svg │ │ │ │ │ ├── testassumptionfailed.svg │ │ │ │ │ ├── testerr.svg │ │ │ │ │ ├── testfail.svg │ │ │ │ │ ├── testfile_obj.svg │ │ │ │ │ ├── testignored.svg │ │ │ │ │ ├── testok.svg │ │ │ │ │ ├── testrun.svg │ │ │ │ │ ├── tsuite.svg │ │ │ │ │ ├── tsuiteerror.svg │ │ │ │ │ ├── tsuitefail.svg │ │ │ │ │ ├── tsuiteok.svg │ │ │ │ │ └── tsuiterun.svg │ │ │ │ └── prgss │ │ │ │ │ ├── ff4.svg │ │ │ │ │ └── ss4.svg │ │ │ ├── org.eclipse.jdt.ui │ │ │ │ ├── combined │ │ │ │ │ ├── auto_module.svg │ │ │ │ │ ├── exports_packages.svg │ │ │ │ │ ├── focus_module.svg │ │ │ │ │ ├── opens_package.svg │ │ │ │ │ ├── patch_project.svg │ │ │ │ │ ├── reads_module.svg │ │ │ │ │ └── system_module.svg │ │ │ │ ├── elcl16 │ │ │ │ │ ├── add_linked_source_to_buildpath.svg │ │ │ │ │ ├── alphab_sort_co.svg │ │ │ │ │ ├── backward_nav.svg │ │ │ │ │ ├── ch_callees.svg │ │ │ │ │ ├── ch_callers.svg │ │ │ │ │ ├── ch_cancel.svg │ │ │ │ │ ├── clear_co.svg │ │ │ │ │ ├── collapseall.svg │ │ │ │ │ ├── configure_buildpath_filters.svg │ │ │ │ │ ├── definingtype_sort_co.svg │ │ │ │ │ ├── exclusion_filter_attrib.svg │ │ │ │ │ ├── external_browser.svg │ │ │ │ │ ├── fields_co.svg │ │ │ │ │ ├── filter_ps.svg │ │ │ │ │ ├── forward_nav.svg │ │ │ │ │ ├── gointo_toplevel_type.svg │ │ │ │ │ ├── goto_input.svg │ │ │ │ │ ├── hierarchy_co.svg │ │ │ │ │ ├── history_list.svg │ │ │ │ │ ├── impl_co.svg │ │ │ │ │ ├── inclusion_filter_attrib.svg │ │ │ │ │ ├── inher_co.svg │ │ │ │ │ ├── localtypes_co.svg │ │ │ │ │ ├── pin_view.svg │ │ │ │ │ ├── public_co.svg │ │ │ │ │ ├── refresh_nav.svg │ │ │ │ │ ├── remove_as_source_folder.svg │ │ │ │ │ ├── remove_exc.svg │ │ │ │ │ ├── static_co.svg │ │ │ │ │ ├── sub_co.svg │ │ │ │ │ ├── super_co.svg │ │ │ │ │ ├── sync_broken.svg │ │ │ │ │ └── synced.svg │ │ │ │ ├── etool16 │ │ │ │ │ ├── mark_occurrences.svg │ │ │ │ │ ├── newannotation_wiz.svg │ │ │ │ │ ├── newclass_wiz.svg │ │ │ │ │ ├── newenum_wiz.svg │ │ │ │ │ ├── newint_wiz.svg │ │ │ │ │ ├── newjprj_wiz.svg │ │ │ │ │ ├── newpack_wiz.svg │ │ │ │ │ ├── newpackfolder_wiz.svg │ │ │ │ │ ├── opentype.svg │ │ │ │ │ ├── segment_edit.svg │ │ │ │ │ └── toggle_breadcrumb.svg │ │ │ │ ├── obj16 │ │ │ │ │ ├── access_restriction_attrib.svg │ │ │ │ │ ├── add_correction.svg │ │ │ │ │ ├── annotation_obj.svg │ │ │ │ │ ├── cf_obj.svg │ │ │ │ │ ├── cf_src_obj.svg │ │ │ │ │ ├── class_default_obj.svg │ │ │ │ │ ├── class_obj.svg │ │ │ │ │ ├── classf_obj.svg │ │ │ │ │ ├── classfo_obj.svg │ │ │ │ │ ├── compare_field.svg │ │ │ │ │ ├── compare_method.svg │ │ │ │ │ ├── correction_cast.svg │ │ │ │ │ ├── correction_change.svg │ │ │ │ │ ├── correction_delete_import.svg │ │ │ │ │ ├── correction_linked_rename.svg │ │ │ │ │ ├── correction_move.svg │ │ │ │ │ ├── correction_multi_fix.svg │ │ │ │ │ ├── correction_rename.svg │ │ │ │ │ ├── cp_order_obj.svg │ │ │ │ │ ├── cu_obj.svg │ │ │ │ │ ├── empty_logical_package_obj.svg │ │ │ │ │ ├── empty_pack_fldr_obj.svg │ │ │ │ │ ├── empty_pack_obj.svg │ │ │ │ │ ├── enum_obj.svg │ │ │ │ │ ├── envvar_obj.svg │ │ │ │ │ ├── exclusion_filter_attrib.svg │ │ │ │ │ ├── field_default_obj.svg │ │ │ │ │ ├── field_private_obj.svg │ │ │ │ │ ├── field_protected_obj.svg │ │ │ │ │ ├── field_public_obj.svg │ │ │ │ │ ├── file_obj.svg │ │ │ │ │ ├── html_tag_obj.svg │ │ │ │ │ ├── imp_obj.svg │ │ │ │ │ ├── impc_obj.svg │ │ │ │ │ ├── implm_co.svg │ │ │ │ │ ├── inclusion_filter_attrib.svg │ │ │ │ │ ├── innerclass_private_obj.svg │ │ │ │ │ ├── innerclass_protected_obj.svg │ │ │ │ │ ├── int_obj.svg │ │ │ │ │ ├── intf_obj.svg │ │ │ │ │ ├── jar_desc_obj.svg │ │ │ │ │ ├── jar_l_obj.svg │ │ │ │ │ ├── jar_lsrc_obj.svg │ │ │ │ │ ├── jar_obj.svg │ │ │ │ │ ├── jar_src_obj.svg │ │ │ │ │ ├── java_model_obj.svg │ │ │ │ │ ├── javadoc_location_attrib.svg │ │ │ │ │ ├── jcu_obj.svg │ │ │ │ │ ├── jcu_resource_obj.svg │ │ │ │ │ ├── jdoc_tag_obj.svg │ │ │ │ │ ├── jexception_obj.svg │ │ │ │ │ ├── jsearch_obj.svg │ │ │ │ │ ├── jworkingSet_obj.svg │ │ │ │ │ ├── library_obj.svg │ │ │ │ │ ├── localvariable_obj.svg │ │ │ │ │ ├── logical_package_obj.svg │ │ │ │ │ ├── methdef_obj.svg │ │ │ │ │ ├── methpri_obj.svg │ │ │ │ │ ├── methpro_obj.svg │ │ │ │ │ ├── methpub_obj.svg │ │ │ │ │ ├── module_attrib.svg │ │ │ │ │ ├── native_lib_path_attrib.svg │ │ │ │ │ ├── never_translate.svg │ │ │ │ │ ├── occ_match.svg │ │ │ │ │ ├── occ_read.svg │ │ │ │ │ ├── occ_write.svg │ │ │ │ │ ├── output_folder_attrib.svg │ │ │ │ │ ├── over_co.svg │ │ │ │ │ ├── package_obj.svg │ │ │ │ │ ├── packagefolder_obj.svg │ │ │ │ │ ├── packd_obj.svg │ │ │ │ │ ├── quickassist_obj.svg │ │ │ │ │ ├── quickfix_error_obj.svg │ │ │ │ │ ├── quickfix_warning_obj.svg │ │ │ │ │ ├── remove_correction.svg │ │ │ │ │ ├── search_decl_obj.svg │ │ │ │ │ ├── search_ref_obj.svg │ │ │ │ │ ├── searchm_obj.svg │ │ │ │ │ ├── skip.svg │ │ │ │ │ ├── source_attach_attrib.svg │ │ │ │ │ ├── template_obj.svg │ │ │ │ │ ├── template_swt_obj.svg │ │ │ │ │ ├── translate.svg │ │ │ │ │ └── unknown_obj.svg │ │ │ │ └── ovr16 │ │ │ │ │ ├── abstract_co.svg │ │ │ │ │ ├── annotation_tsk.svg │ │ │ │ │ ├── class_abs_tsk.svg │ │ │ │ │ ├── constr_ovr.svg │ │ │ │ │ ├── default_co.svg │ │ │ │ │ ├── deprecated.svg │ │ │ │ │ ├── enum_tsk.svg │ │ │ │ │ ├── error_co.svg │ │ │ │ │ ├── error_co_buildpath.svg │ │ │ │ │ ├── final_co.svg │ │ │ │ │ ├── focus_ovr.svg │ │ │ │ │ ├── ignore_optional_problems_ovr.svg │ │ │ │ │ ├── implm_co.svg │ │ │ │ │ ├── info_co.svg │ │ │ │ │ ├── interface_tsk.svg │ │ │ │ │ ├── java_ovr.svg │ │ │ │ │ ├── library_ovr.svg │ │ │ │ │ ├── maxlevel_co.svg │ │ │ │ │ ├── native_co.svg │ │ │ │ │ ├── over_co.svg │ │ │ │ │ ├── recursive_co.svg │ │ │ │ │ ├── run_co.svg │ │ │ │ │ ├── static_co.svg │ │ │ │ │ ├── synch_co.svg │ │ │ │ │ ├── transient_co.svg │ │ │ │ │ ├── volatile_co.svg │ │ │ │ │ └── warning_co.svg │ │ │ ├── org.eclipse.ltk.ui.refactoring │ │ │ │ ├── elcl16 │ │ │ │ │ └── filter_ps.svg │ │ │ │ └── obj16 │ │ │ │ │ ├── change.svg │ │ │ │ │ ├── composite_change.svg │ │ │ │ │ ├── error_obj.svg │ │ │ │ │ ├── fatalerror_obj.svg │ │ │ │ │ ├── file_change.svg │ │ │ │ │ ├── info_obj.svg │ │ │ │ │ ├── text_edit.svg │ │ │ │ │ └── warning_obj.svg │ │ │ ├── org.eclipse.ui.console │ │ │ │ └── elcl16 │ │ │ │ │ ├── clear_co.svg │ │ │ │ │ ├── console_view.svg │ │ │ │ │ ├── cut_edit.svg │ │ │ │ │ ├── lock_co.svg │ │ │ │ │ ├── new_con.svg │ │ │ │ │ ├── paste_edit.svg │ │ │ │ │ ├── pin.svg │ │ │ │ │ └── rem_co.svg │ │ │ ├── org.eclipse.ui.editors │ │ │ │ └── etool16 │ │ │ │ │ ├── next_nav.svg │ │ │ │ │ ├── prev_nav.svg │ │ │ │ │ └── show_whitespace_chars.svg │ │ │ └── org.eclipse.ui.workbench.texteditor │ │ │ │ └── etool16 │ │ │ │ └── block_selection_mode.svg │ │ ├── notices.html │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── reference │ │ │ ├── breakpoints │ │ │ │ ├── images │ │ │ │ │ ├── ref-breakpoint_caught.PNG │ │ │ │ │ ├── ref-breakpoint_condition.PNG │ │ │ │ │ ├── ref-breakpoint_enabled.PNG │ │ │ │ │ ├── ref-breakpoint_entry.PNG │ │ │ │ │ ├── ref-breakpoint_exit.PNG │ │ │ │ │ ├── ref-breakpoint_hitcount.PNG │ │ │ │ │ ├── ref-breakpoint_suspendpolicy.PNG │ │ │ │ │ ├── ref-breakpoint_suspendsubclass.PNG │ │ │ │ │ ├── ref-breakpoint_triggerpoint.PNG │ │ │ │ │ ├── ref-breakpoint_triggerpoint_overlay.PNG │ │ │ │ │ ├── ref-breakpoint_uncaught.PNG │ │ │ │ │ ├── ref-watchpoint_access_option.PNG │ │ │ │ │ └── ref-watchpoint_mod.PNG │ │ │ │ ├── ref-access_option.htm │ │ │ │ ├── ref-caught_option.htm │ │ │ │ ├── ref-condition_option.htm │ │ │ │ ├── ref-enabled_option.htm │ │ │ │ ├── ref-entry_option.htm │ │ │ │ ├── ref-exit_option.htm │ │ │ │ ├── ref-hitcount_option.htm │ │ │ │ ├── ref-modification_option.htm │ │ │ │ ├── ref-suspendpolicy_option.htm │ │ │ │ ├── ref-suspendsubclass_option.htm │ │ │ │ ├── ref-triggerpoint_option.htm │ │ │ │ └── ref-uncaught_option.htm │ │ │ ├── images │ │ │ │ ├── c-quickfix.png │ │ │ │ ├── contentassist.png │ │ │ │ ├── formatter-condense-multi-lines-comments.png │ │ │ │ ├── formatter-disabling-enabling-tags.png │ │ │ │ ├── formatter-join-lines-after.png │ │ │ │ ├── formatter-join-lines-before.png │ │ │ │ ├── formatter-prefer-wrapping-outer-expressions.png │ │ │ │ ├── launchconfiguration-commontab.png │ │ │ │ ├── quickfix-hover.png │ │ │ │ └── ref-breadcrumb.png │ │ │ ├── menus │ │ │ │ └── run │ │ │ │ │ ├── images │ │ │ │ │ ├── add_class_load_dialog.PNG │ │ │ │ │ ├── ref-debug_as.PNG │ │ │ │ │ ├── ref-debug_dialog.PNG │ │ │ │ │ ├── ref-debug_history.PNG │ │ │ │ │ ├── ref-run_as.PNG │ │ │ │ │ ├── ref-run_dialog.PNG │ │ │ │ │ └── ref-run_history.PNG │ │ │ │ │ ├── ref-add_class_load_breakpoint.htm │ │ │ │ │ ├── ref-addwatch.htm │ │ │ │ │ ├── ref-debug_as.htm │ │ │ │ │ ├── ref-debug_history.htm │ │ │ │ │ ├── ref-dll_debug.htm │ │ │ │ │ ├── ref-menu-run.htm │ │ │ │ │ ├── ref-open_debug_dialog.htm │ │ │ │ │ ├── ref-open_run_dialog.htm │ │ │ │ │ ├── ref-rll_run.htm │ │ │ │ │ ├── ref-run_as.htm │ │ │ │ │ ├── ref-run_history.htm │ │ │ │ │ ├── ref-run_to_line.htm │ │ │ │ │ ├── ref-step_into_selection.htm │ │ │ │ │ ├── ref-toggle_breakpoint.htm │ │ │ │ │ ├── ref-toggle_line_breakpoint.htm │ │ │ │ │ ├── ref-toggle_method_breakpoint.htm │ │ │ │ │ └── ref-toggle_watchpoint.htm │ │ │ ├── preferences │ │ │ │ ├── java │ │ │ │ │ ├── appearance │ │ │ │ │ │ ├── ref-preferences-member-sort-order.htm │ │ │ │ │ │ └── ref-preferences-type-filters.htm │ │ │ │ │ ├── buildpath │ │ │ │ │ │ ├── ref-preferences-classpath-variables.htm │ │ │ │ │ │ └── ref-preferences-user-libraries.htm │ │ │ │ │ ├── codestyle │ │ │ │ │ │ ├── ref-preferences-cleanup.htm │ │ │ │ │ │ ├── ref-preferences-code-templates.htm │ │ │ │ │ │ ├── ref-preferences-formatter.htm │ │ │ │ │ │ └── ref-preferences-organize-imports.htm │ │ │ │ │ ├── compiler │ │ │ │ │ │ ├── ref-preferences-building.htm │ │ │ │ │ │ ├── ref-preferences-errors-warnings.htm │ │ │ │ │ │ ├── ref-preferences-javadoc.htm │ │ │ │ │ │ └── ref-preferences-task-tags.htm │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── ref-debug.htm │ │ │ │ │ │ ├── ref-detail_formatters.htm │ │ │ │ │ │ ├── ref-execution_environments.htm │ │ │ │ │ │ ├── ref-heap_walking.htm │ │ │ │ │ │ ├── ref-installed_jres.htm │ │ │ │ │ │ ├── ref-logical_structures.htm │ │ │ │ │ │ ├── ref-primitive_display_options.htm │ │ │ │ │ │ └── ref-step_filtering.htm │ │ │ │ │ ├── editor │ │ │ │ │ │ ├── ref-preferences-code-minings.htm │ │ │ │ │ │ ├── ref-preferences-content-assist-advanced.htm │ │ │ │ │ │ ├── ref-preferences-content-assist-favorites.htm │ │ │ │ │ │ ├── ref-preferences-content-assist.htm │ │ │ │ │ │ ├── ref-preferences-edit-template-dialog.htm │ │ │ │ │ │ ├── ref-preferences-folding.htm │ │ │ │ │ │ ├── ref-preferences-hovers.htm │ │ │ │ │ │ ├── ref-preferences-mark-occurrences.htm │ │ │ │ │ │ ├── ref-preferences-save-actions.htm │ │ │ │ │ │ ├── ref-preferences-syntax-coloring.htm │ │ │ │ │ │ ├── ref-preferences-templates.htm │ │ │ │ │ │ └── ref-preferences-typing.htm │ │ │ │ │ ├── ref-preferences-appearance.htm │ │ │ │ │ ├── ref-preferences-build-path.htm │ │ │ │ │ ├── ref-preferences-code-style.htm │ │ │ │ │ ├── ref-preferences-compiler.htm │ │ │ │ │ ├── ref-preferences-editor.htm │ │ │ │ │ ├── ref-preferences-installed-jres.htm │ │ │ │ │ ├── ref-preferences-junit.htm │ │ │ │ │ └── ref-preferences-properties-files-editor.htm │ │ │ │ ├── ref-preferences-java.htm │ │ │ │ └── run-debug │ │ │ │ │ ├── images │ │ │ │ │ ├── ref-default_launchers.PNG │ │ │ │ │ ├── ref-ext_string_subbed.PNG │ │ │ │ │ ├── ref-lcd_string_subbed.PNG │ │ │ │ │ ├── ref-string_dialog.PNG │ │ │ │ │ └── ref-string_sub.PNG │ │ │ │ │ ├── ref-console.htm │ │ │ │ │ ├── ref-console_ansi.htm │ │ │ │ │ ├── ref-default_launchers.htm │ │ │ │ │ ├── ref-launch_configurations.htm │ │ │ │ │ ├── ref-launching.htm │ │ │ │ │ ├── ref-perspectives.htm │ │ │ │ │ ├── ref-run_debug.htm │ │ │ │ │ ├── ref-string_substitution.htm │ │ │ │ │ └── ref-view_management.htm │ │ │ ├── propertypages │ │ │ │ ├── images │ │ │ │ │ └── rundebug-proppage.PNG │ │ │ │ ├── ref-properties-buildpath-modularity.htm │ │ │ │ └── ref-properties-rundebug.htm │ │ │ ├── ref-actions-toolbar.htm │ │ │ ├── ref-apt-automaticProcessorOptions.htm │ │ │ ├── ref-apt-config.htm │ │ │ ├── ref-apt-factoryPath.htm │ │ │ ├── ref-apt-factoryPathOptions.htm │ │ │ ├── ref-apt-processorOptionsInput.htm │ │ │ ├── ref-dialog-configure-working-sets.htm │ │ │ ├── ref-dialog-gettersetter.htm │ │ │ ├── ref-dialog-java-element-filters.htm │ │ │ ├── ref-dialog-java-search.htm │ │ │ ├── ref-dialog-javadoc-location.htm │ │ │ ├── ref-dialog-open-type.htm │ │ │ ├── ref-dialog-override-method.htm │ │ │ ├── ref-dialog-tostring.htm │ │ │ ├── ref-dialog-type-selection.htm │ │ │ ├── ref-dialog-working-set-assignments.htm │ │ │ ├── ref-export-jar.htm │ │ │ ├── ref-export-javadoc.htm │ │ │ ├── ref-export-runnable-jar.htm │ │ │ ├── ref-icons.htm │ │ │ ├── ref-java-editor-breadcrumb.htm │ │ │ ├── ref-java-editor-code-assist.htm │ │ │ ├── ref-java-editor-formatter.htm │ │ │ ├── ref-java-editor-quickassist.htm │ │ │ ├── ref-java-editor-quickfix.htm │ │ │ ├── ref-jdt-actions.htm │ │ │ ├── ref-jdt-faq.htm │ │ │ ├── ref-jdt-glossary.htm │ │ │ ├── ref-keybindings.htm │ │ │ ├── ref-launchconfiguration-commontab.htm │ │ │ ├── ref-menu-edit.htm │ │ │ ├── ref-menu-file.htm │ │ │ ├── ref-menu-navigate.htm │ │ │ ├── ref-menu-project.htm │ │ │ ├── ref-menu-refactor.htm │ │ │ ├── ref-menu-search.htm │ │ │ ├── ref-menu-source.htm │ │ │ ├── ref-properties-build-path.htm │ │ │ ├── ref-properties-compiler.htm │ │ │ ├── ref-properties-source-attachment.htm │ │ │ ├── ref-properties-task-tags.htm │ │ │ ├── ref-refactoring-extract-method.htm │ │ │ ├── ref-toolbar-run.htm │ │ │ ├── ref-tostring-listcontent.htm │ │ │ ├── ref-tostring-styles.htm │ │ │ ├── ref-tostring-templates.htm │ │ │ ├── ref-wizard-annotation.htm │ │ │ ├── ref-wizard-class.htm │ │ │ ├── ref-wizard-enum.htm │ │ │ ├── ref-wizard-externalize-strings.htm │ │ │ ├── ref-wizard-interface.htm │ │ │ ├── ref-wizard-java-project.htm │ │ │ ├── ref-wizard-package.htm │ │ │ ├── ref-wizard-refactorings.htm │ │ │ ├── ref-wizard-scrapbook.htm │ │ │ ├── ref-wizard-source-folder.htm │ │ │ ├── views │ │ │ │ ├── breakpoints │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ref-views-breakpoint_set_hitcount_dialog.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_accesscontext.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_addexceptiondialog.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_caughtcontext.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_defaultworkingset_dialog.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_details.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_entrycontext.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_exitcontext.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_groupbyadvanced_dialog.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_groupbymenu.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_modcontext.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_properties.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_properties_dialog.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_select_default_workingset_dialog.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_skipall_example.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_sortbymenu.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_uncaughtcontext.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_workingset_dialog.PNG │ │ │ │ │ │ ├── ref-views_breakpoint_workingsets.PNG │ │ │ │ │ │ └── ref-views_breakpoints_view.PNG │ │ │ │ │ ├── ref-access_contextaction.htm │ │ │ │ │ ├── ref-addexception_viewaction.htm │ │ │ │ │ ├── ref-breakpoints_view.htm │ │ │ │ │ ├── ref-caught_contextaction.htm │ │ │ │ │ ├── ref-disable_contextaction.htm │ │ │ │ │ ├── ref-enable_contextaction.htm │ │ │ │ │ ├── ref-entry_contextaction.htm │ │ │ │ │ ├── ref-exit_contextaction.htm │ │ │ │ │ ├── ref-expandall_viewaction.htm │ │ │ │ │ ├── ref-export_contextaction.htm │ │ │ │ │ ├── ref-gotofile_viewaction.htm │ │ │ │ │ ├── ref-groupby_viewaction.htm │ │ │ │ │ ├── ref-hitcount_contextaction.htm │ │ │ │ │ ├── ref-import_contextaction.htm │ │ │ │ │ ├── ref-linkwith_viewaction.htm │ │ │ │ │ ├── ref-modification_contextaction.htm │ │ │ │ │ ├── ref-properties_contextaction.htm │ │ │ │ │ ├── ref-remove_viewaction.htm │ │ │ │ │ ├── ref-removeall_viewaction.htm │ │ │ │ │ ├── ref-removealltriggers_viewaction.htm │ │ │ │ │ ├── ref-selectdefaultws_viewaction.htm │ │ │ │ │ ├── ref-showsupported_viewaction.htm │ │ │ │ │ ├── ref-skipall_viewaction.htm │ │ │ │ │ ├── ref-sortby_viewaction.htm │ │ │ │ │ ├── ref-suspendpolicy_contextaction.htm │ │ │ │ │ ├── ref-uncaught_contextaction.htm │ │ │ │ │ └── ref-workingsets_viewaction.htm │ │ │ │ ├── console │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ref-console_view.PNG │ │ │ │ │ │ ├── ref-cvs_console.PNG │ │ │ │ │ │ ├── ref-format_context.PNG │ │ │ │ │ │ ├── ref-open_console_menu.PNG │ │ │ │ │ │ ├── ref-openlink_context.PNG │ │ │ │ │ │ ├── ref-prefs_context.PNG │ │ │ │ │ │ ├── ref-removeterminated_context.PNG │ │ │ │ │ │ └── ref-stacktrace_console.PNG │ │ │ │ │ ├── ref-autoformat_action.htm │ │ │ │ │ ├── ref-clear_action.htm │ │ │ │ │ ├── ref-console_view.htm │ │ │ │ │ ├── ref-cvs_console.htm │ │ │ │ │ ├── ref-display_action.htm │ │ │ │ │ ├── ref-format_action.htm │ │ │ │ │ ├── ref-open_action.htm │ │ │ │ │ ├── ref-openlink_action.htm │ │ │ │ │ ├── ref-pin_action.htm │ │ │ │ │ ├── ref-prefs_action.htm │ │ │ │ │ ├── ref-process_console.htm │ │ │ │ │ ├── ref-removeallterminated_action.htm │ │ │ │ │ ├── ref-removelaunch_action.htm │ │ │ │ │ ├── ref-scrolllock_action.htm │ │ │ │ │ ├── ref-show_err_action.htm │ │ │ │ │ ├── ref-show_out_action.htm │ │ │ │ │ ├── ref-stacktrace_console.htm │ │ │ │ │ └── ref-terminate_action.htm │ │ │ │ ├── debug │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ref-breadcrumb.png │ │ │ │ │ │ ├── ref-breadcrumb_drop_down.png │ │ │ │ │ │ ├── ref-configdialog.PNG │ │ │ │ │ │ ├── ref-debug_view.PNG │ │ │ │ │ │ ├── ref-editlaunchconfig.PNG │ │ │ │ │ │ ├── ref-editstepfilters.PNG │ │ │ │ │ │ ├── ref-filterpackage.PNG │ │ │ │ │ │ ├── ref-filtertype.PNG │ │ │ │ │ │ ├── ref-find_dialog.PNG │ │ │ │ │ │ ├── ref-lookupsource.PNG │ │ │ │ │ │ ├── ref-monitors_supported.PNG │ │ │ │ │ │ ├── ref-monitors_unsupported.PNG │ │ │ │ │ │ ├── ref-opendeclared.PNG │ │ │ │ │ │ ├── ref-opendeclaredhier.PNG │ │ │ │ │ │ ├── ref-properties.PNG │ │ │ │ │ │ ├── ref-properties_dialog.PNG │ │ │ │ │ │ ├── ref-properties_dialog2.PNG │ │ │ │ │ │ ├── ref-sourcelookupdialog.PNG │ │ │ │ │ │ ├── ref-viewmanagement.PNG │ │ │ │ │ │ └── ref-viewmng_menu.PNG │ │ │ │ │ ├── ref-breadcrumb.htm │ │ │ │ │ ├── ref-debug_view.htm │ │ │ │ │ ├── ref-disconnect.htm │ │ │ │ │ ├── ref-droptoframe.htm │ │ │ │ │ ├── ref-editlaunchconfig.htm │ │ │ │ │ ├── ref-editsourcelookup.htm │ │ │ │ │ ├── ref-editstepfilters.htm │ │ │ │ │ ├── ref-executioncontrolcommands.htm │ │ │ │ │ ├── ref-filterpackage.htm │ │ │ │ │ ├── ref-filtertype.htm │ │ │ │ │ ├── ref-layout_automatic.htm │ │ │ │ │ ├── ref-layout_breadcrumb.htm │ │ │ │ │ ├── ref-layout_breadcrumb_auto_expand.htm │ │ │ │ │ ├── ref-layout_tree.htm │ │ │ │ │ ├── ref-lookupsource.htm │ │ │ │ │ ├── ref-opendeclared.htm │ │ │ │ │ ├── ref-opendeclaredhier.htm │ │ │ │ │ ├── ref-properties.htm │ │ │ │ │ ├── ref-relaunch.htm │ │ │ │ │ ├── ref-removeallterminated.htm │ │ │ │ │ ├── ref-resume.htm │ │ │ │ │ ├── ref-showmonitors.htm │ │ │ │ │ ├── ref-showsystemthreads.htm │ │ │ │ │ ├── ref-showthreadgroups.htm │ │ │ │ │ ├── ref-stepinto.htm │ │ │ │ │ ├── ref-stepover.htm │ │ │ │ │ ├── ref-stepreturn.htm │ │ │ │ │ ├── ref-suspend.htm │ │ │ │ │ ├── ref-terminate.htm │ │ │ │ │ ├── ref-terminateall.htm │ │ │ │ │ ├── ref-terminateandremove.htm │ │ │ │ │ ├── ref-terminaterelaunch.htm │ │ │ │ │ └── ref-usestepfilters.htm │ │ │ │ ├── display │ │ │ │ │ ├── images │ │ │ │ │ │ └── ref-debug_shell_view.PNG │ │ │ │ │ ├── ref-clear.htm │ │ │ │ │ └── ref-debug_shell_view.htm │ │ │ │ ├── expressions │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ref-addwatchexpression_dialog.PNG │ │ │ │ │ │ ├── ref-convert.PNG │ │ │ │ │ │ ├── ref-disable.PNG │ │ │ │ │ │ ├── ref-edit.PNG │ │ │ │ │ │ ├── ref-edit_dialog.PNG │ │ │ │ │ │ ├── ref-enable.PNG │ │ │ │ │ │ ├── ref-expressions_view.PNG │ │ │ │ │ │ ├── ref-java.PNG │ │ │ │ │ │ └── ref-reevaluate.PNG │ │ │ │ │ ├── ref-addwatch.htm │ │ │ │ │ ├── ref-convert.htm │ │ │ │ │ ├── ref-disable.htm │ │ │ │ │ ├── ref-edit.htm │ │ │ │ │ ├── ref-enable.htm │ │ │ │ │ ├── ref-expressions_view.htm │ │ │ │ │ ├── ref-inspect.htm │ │ │ │ │ ├── ref-reevaluate.htm │ │ │ │ │ ├── ref-remove.htm │ │ │ │ │ └── ref-removeall.htm │ │ │ │ ├── ref-call-hierarchy.htm │ │ │ │ ├── ref-java-editor.htm │ │ │ │ ├── ref-type-hierarchy.htm │ │ │ │ ├── ref-view-javadoc.htm │ │ │ │ ├── ref-view-junit.htm │ │ │ │ ├── ref-view-outline.htm │ │ │ │ ├── ref-view-package-explorer.htm │ │ │ │ ├── ref-view-scrapbook.htm │ │ │ │ ├── ref-viewsandeditors.htm │ │ │ │ ├── shared │ │ │ │ │ ├── images │ │ │ │ │ │ ├── force-return-action.png │ │ │ │ │ │ ├── force-return-code.png │ │ │ │ │ │ ├── ref-changeobjectvalue.PNG │ │ │ │ │ │ ├── ref-changeprimitivevalue.PNG │ │ │ │ │ │ ├── ref-changestringvalue.PNG │ │ │ │ │ │ ├── ref-contentassist.PNG │ │ │ │ │ │ ├── ref-detailpane.PNG │ │ │ │ │ │ ├── ref-detailpane_dialog.PNG │ │ │ │ │ │ ├── ref-displayresult.PNG │ │ │ │ │ │ ├── ref-find_dialog.PNG │ │ │ │ │ │ ├── ref-findreplace_dialog.PNG │ │ │ │ │ │ ├── ref-inspectresult.PNG │ │ │ │ │ │ ├── ref-javapreferences.PNG │ │ │ │ │ │ ├── ref-selectcolumnsdialog.PNG │ │ │ │ │ │ ├── ref-selectedstatement.PNG │ │ │ │ │ │ ├── ref-showreferences.PNG │ │ │ │ │ │ ├── ref-viewdisplaycommands.PNG │ │ │ │ │ │ └── ref-viewlayoutmenu.PNG │ │ │ │ │ ├── ref-allinstances.htm │ │ │ │ │ ├── ref-allreferences.htm │ │ │ │ │ ├── ref-assignvalue.htm │ │ │ │ │ ├── ref-changevarvalue.htm │ │ │ │ │ ├── ref-collapseall.htm │ │ │ │ │ ├── ref-contentassist.htm │ │ │ │ │ ├── ref-copy.htm │ │ │ │ │ ├── ref-cut.htm │ │ │ │ │ ├── ref-detailpane.htm │ │ │ │ │ ├── ref-display.htm │ │ │ │ │ ├── ref-execute.htm │ │ │ │ │ ├── ref-find.htm │ │ │ │ │ ├── ref-findreplace.htm │ │ │ │ │ ├── ref-forcereturn.htm │ │ │ │ │ ├── ref-horizview.htm │ │ │ │ │ ├── ref-inspect.htm │ │ │ │ │ ├── ref-inspectvariable.htm │ │ │ │ │ ├── ref-maxlength.htm │ │ │ │ │ ├── ref-paste.htm │ │ │ │ │ ├── ref-preferences.htm │ │ │ │ │ ├── ref-selectall.htm │ │ │ │ │ ├── ref-selectcolumns.htm │ │ │ │ │ ├── ref-showcolumns.htm │ │ │ │ │ ├── ref-showconstants.htm │ │ │ │ │ ├── ref-showlogical.htm │ │ │ │ │ ├── ref-shownull.htm │ │ │ │ │ ├── ref-showqualified.htm │ │ │ │ │ ├── ref-showreferences.htm │ │ │ │ │ ├── ref-showstatic.htm │ │ │ │ │ ├── ref-showtypenames.htm │ │ │ │ │ ├── ref-togglewp.htm │ │ │ │ │ ├── ref-vertview.htm │ │ │ │ │ ├── ref-viewdisplaycommands.htm │ │ │ │ │ ├── ref-viewlayoutcommands.htm │ │ │ │ │ ├── ref-viewonly.htm │ │ │ │ │ └── ref-wrap.htm │ │ │ │ └── variables │ │ │ │ │ ├── images │ │ │ │ │ └── ref-variables_view.PNG │ │ │ │ │ ├── ref-createwatch.htm │ │ │ │ │ └── ref-variables_view.htm │ │ │ └── wizards │ │ │ │ ├── ref-export_breakpoints.htm │ │ │ │ ├── ref-export_launch_configs.htm │ │ │ │ ├── ref-import_breakpoints.htm │ │ │ │ └── ref-import_launch_configs.htm │ │ ├── tasks │ │ │ ├── images │ │ │ │ ├── task-add-exception-breakpoint.PNG │ │ │ │ ├── task-add_jre_ee_file.PNG │ │ │ │ ├── task-add_jre_std_vm.PNG │ │ │ │ ├── task-memory-add-monitor.gif │ │ │ │ ├── task-memory-det-pane.gif │ │ │ │ ├── task-memory-link-panes.gif │ │ │ │ ├── task-memory-new.gif │ │ │ │ ├── task-memory-pin.gif │ │ │ │ ├── task-memory-remove-monitor.gif │ │ │ │ ├── task-null-annotations-qf-bundle.png │ │ │ │ ├── task-null-annotations-qf-simple.png │ │ │ │ ├── tasks-199a.png │ │ │ │ ├── tasks-46.png │ │ │ │ ├── tasks-exception-filtering-add.PNG │ │ │ │ ├── tasks-excetpion-filtering-page.PNG │ │ │ │ ├── tasks_200a.png │ │ │ │ └── tasks_201a.png │ │ │ ├── task-add_line_breakpoints.htm │ │ │ ├── task-add_new_jre.htm │ │ │ ├── task-ant_javac_adapter.htm │ │ │ ├── task-apply_hit_count.htm │ │ │ ├── task-assign_default_jre.htm │ │ │ ├── task-avoiding_resource_leaks.htm │ │ │ ├── task-catching_exceptions.htm │ │ │ ├── task-choose_config_jre.htm │ │ │ ├── task-create_scrapbook_page.htm │ │ │ ├── task-disconnect_remote_debug.htm │ │ │ ├── task-display_evaluation_result.htm │ │ │ ├── task-enable_disable_breakpoints.htm │ │ │ ├── task-ensuring_switch_completeness.htm │ │ │ ├── task-evaluating_expressions.htm │ │ │ ├── task-executing_an_expression.htm │ │ │ ├── task-improve_code_quality.htm │ │ │ ├── task-inspect_evaluation_result.htm │ │ │ ├── task-inspecting.htm │ │ │ ├── task-launching_java_applet.htm │ │ │ ├── task-launching_java_program.htm │ │ │ ├── task-manage_conditional_breakpoint.htm │ │ │ ├── task-memory-add.htm │ │ │ ├── task-memory-change.htm │ │ │ ├── task-memory-inspect.htm │ │ │ ├── task-memory-monitors.htm │ │ │ ├── task-memory-multiple-add.htm │ │ │ ├── task-memory-multiple-views.htm │ │ │ ├── task-memory-preference.htm │ │ │ ├── task-memory-remove.htm │ │ │ ├── task-preparing_to_debug.htm │ │ │ ├── task-relaunch_program.htm │ │ │ ├── task-remotejava_launch_config.htm │ │ │ ├── task-remove_line_breakpoints.htm │ │ │ ├── task-resuming_threads.htm │ │ │ ├── task-running_and_debugging.htm │ │ │ ├── task-scrapbook_content_assist.htm │ │ │ ├── task-scrapbook_error_reporting.htm │ │ │ ├── task-set_method_breakpoints.htm │ │ │ ├── task-stepping.htm │ │ │ ├── task-suppress_warnings.htm │ │ │ ├── task-suspending_threads.htm │ │ │ ├── task-using_batch_compiler.htm │ │ │ ├── task-using_external_null_annotations.htm │ │ │ ├── task-using_null_annotations.htm │ │ │ ├── task-using_null_type_annotations.htm │ │ │ ├── task-view_compilation_errors.htm │ │ │ ├── task-view_runtime_exceptions.htm │ │ │ ├── tasks-188.htm │ │ │ ├── tasks-202.htm │ │ │ ├── tasks-206.htm │ │ │ ├── tasks-230.htm │ │ │ ├── tasks-231.htm │ │ │ ├── tasks-232.htm │ │ │ ├── tasks-32.htm │ │ │ ├── tasks-33.htm │ │ │ ├── tasks-34.htm │ │ │ ├── tasks-35.htm │ │ │ ├── tasks-36.htm │ │ │ ├── tasks-37.htm │ │ │ ├── tasks-62.htm │ │ │ ├── tasks-63.htm │ │ │ ├── tasks-63a.htm │ │ │ ├── tasks-64.htm │ │ │ ├── tasks-73.htm │ │ │ ├── tasks-74.htm │ │ │ ├── tasks-75.htm │ │ │ ├── tasks-76.htm │ │ │ ├── tasks-77.htm │ │ │ ├── tasks-9.htm │ │ │ ├── tasks-JREs.htm │ │ │ ├── tasks-consoleAppearance.htm │ │ │ ├── tasks-create-exception-filter-expression.htm │ │ │ ├── tasks-debug-launch.htm │ │ │ ├── tasks-deleteJRE.htm │ │ │ ├── tasks-executionArgs.htm │ │ │ └── tasks-java-local-configuration.htm │ │ ├── tips │ │ │ ├── images │ │ │ │ ├── DeclarationView.png │ │ │ │ ├── advanced-highlighting.png │ │ │ │ ├── annotate-map-return.png │ │ │ │ ├── annotation-navigation.png │ │ │ │ ├── assign-to-casted-quickfix.png │ │ │ │ ├── breadcrumb.png │ │ │ │ ├── build-path-actions.png │ │ │ │ ├── build-path-error-decorator.png │ │ │ │ ├── call_hierarchy.png │ │ │ │ ├── camel-case-nav-1.png │ │ │ │ ├── camel-case-nav-2.png │ │ │ │ ├── camel-case-nav-3.png │ │ │ │ ├── camel-case-nav-5.png │ │ │ │ ├── camel-case-nav-6.png │ │ │ │ ├── camel-case-nav-7.png │ │ │ │ ├── cleanupprofiles.png │ │ │ │ ├── code-assist-add-constructor.png │ │ │ │ ├── code-assist-anonym1.png │ │ │ │ ├── code-assist-anonym2.png │ │ │ │ ├── code-assist-argument-proposal-inserted.png │ │ │ │ ├── code-assist-argument-proposal.png │ │ │ │ ├── code-assist-fieldname.png │ │ │ │ ├── code-assist-javadoc2.png │ │ │ │ ├── code-assist-newmethod.png │ │ │ │ ├── code-assist-type-arg-guessing.png │ │ │ │ ├── code-assist-type-arg-guessing2.png │ │ │ │ ├── code-assist-with-import-result.png │ │ │ │ ├── code-assist-with-import.png │ │ │ │ ├── code-assist.png │ │ │ │ ├── code-templates.png │ │ │ │ ├── codeassist-getter.png │ │ │ │ ├── colored-labels.png │ │ │ │ ├── compare-java.png │ │ │ │ ├── compare-properties.png │ │ │ │ ├── completiononcamelcase.png │ │ │ │ ├── compress-packages1.png │ │ │ │ ├── compress-packages2.png │ │ │ │ ├── configure-problem-severity.png │ │ │ │ ├── content-assist-proposals.png │ │ │ │ ├── content_assist_participant.png │ │ │ │ ├── convert-to-lambda-1.png │ │ │ │ ├── convert-to-lambda-2.png │ │ │ │ ├── convert-to-lambda.png │ │ │ │ ├── convert-to-method-reference.png │ │ │ │ ├── create-getter-setter.png │ │ │ │ ├── create-hashcode-equals.png │ │ │ │ ├── delegate-method.png │ │ │ │ ├── editor-code-hover.png │ │ │ │ ├── editor-link-style-open.png │ │ │ │ ├── enable-preview.png │ │ │ │ ├── enclosing-brackets.png │ │ │ │ ├── extract_local_to_var.png │ │ │ │ ├── file-associations-page.png │ │ │ │ ├── focus_ovr.svg │ │ │ │ ├── folding-preferences.png │ │ │ │ ├── gettersetter-quickassist.png │ │ │ │ ├── group-problems.png │ │ │ │ ├── hierarchy-lockview.png │ │ │ │ ├── hover-on-lambda.png │ │ │ │ ├── hover-on-method-reference.png │ │ │ │ ├── hover-on-var.png │ │ │ │ ├── hovergenericsignature.png │ │ │ │ ├── ignore-warnings-source-folders.png │ │ │ │ ├── inplace_outline.png │ │ │ │ ├── instanceof-always-false.png │ │ │ │ ├── instanceof-compl-proposals.png │ │ │ │ ├── is-modular-configuration.png │ │ │ │ ├── java9-create-module.png │ │ │ │ ├── java_stack_console.png │ │ │ │ ├── javadoc-hover.png │ │ │ │ ├── javadoc-location.png │ │ │ │ ├── javadoc-prefs.png │ │ │ │ ├── javadoc-quickfix.png │ │ │ │ ├── javadoc-view.png │ │ │ │ ├── jdt_library_entries_sorted.png │ │ │ │ ├── jdt_library_entries_unsorted.png │ │ │ │ ├── jdt_sort_library_pref.png │ │ │ │ ├── lambda_entry_breakpoint.png │ │ │ │ ├── link-with-editor-in-occs.png │ │ │ │ ├── localhistory-replace.png │ │ │ │ ├── localhistory-restore.png │ │ │ │ ├── mark-occurrences.png │ │ │ │ ├── matching-brackets.png │ │ │ │ ├── name-conventions.png │ │ │ │ ├── navigate-to-switch.png │ │ │ │ ├── new-class.png │ │ │ │ ├── new-project-with-ee.png │ │ │ │ ├── new.png │ │ │ │ ├── nls-problem-search.png │ │ │ │ ├── null-reference.png │ │ │ │ ├── open-declaration-on-var.png │ │ │ │ ├── open-field-declaration-menuitem.png │ │ │ │ ├── open-type-camel-case.png │ │ │ │ ├── org.eclipse.jdt.debug.ui │ │ │ │ │ ├── activate-debug-view.png │ │ │ │ │ ├── all-instances.png │ │ │ │ │ ├── args_tab.png │ │ │ │ │ ├── assign_value.png │ │ │ │ │ ├── breakpoint_condition.png │ │ │ │ │ ├── breakpoint_menu.png │ │ │ │ │ ├── class-load-breakpoint.png │ │ │ │ │ ├── context_menu_launch.png │ │ │ │ │ ├── dbg-bread-crumb.png │ │ │ │ │ ├── deadlock.png │ │ │ │ │ ├── debug-by-writing-to-console.png │ │ │ │ │ ├── def_vm_args.png │ │ │ │ │ ├── detail_formatter.png │ │ │ │ │ ├── env_tab.png │ │ │ │ │ ├── expressions-history.png │ │ │ │ │ ├── hyperlink_step.png │ │ │ │ │ ├── inspect_popup.png │ │ │ │ │ ├── jdt-debug-edit-logical-structure-context-menu.png │ │ │ │ │ ├── jdt-debug-show-logical-structure-by-default.png │ │ │ │ │ ├── label-object-menu.png │ │ │ │ │ ├── label-object-result.png │ │ │ │ │ ├── logical_structure_toggle.png │ │ │ │ │ ├── method-breakpoint.png │ │ │ │ │ ├── perspective-prompt.png │ │ │ │ │ ├── process_properties.png │ │ │ │ │ ├── scrapbook.png │ │ │ │ │ ├── select-columns.png │ │ │ │ │ ├── show-references.png │ │ │ │ │ ├── stack_trace.png │ │ │ │ │ ├── step_into_selection.png │ │ │ │ │ ├── stop_in_main.png │ │ │ │ │ ├── variable-view-columns.png │ │ │ │ │ ├── variable_hover.png │ │ │ │ │ ├── view-mngmt.png │ │ │ │ │ ├── watchpoint_condition.png │ │ │ │ │ └── word_wrap.png │ │ │ │ ├── organize-imports-on-save.png │ │ │ │ ├── override-dependencies-button.png │ │ │ │ ├── override-method.png │ │ │ │ ├── package-abbreviations-off.png │ │ │ │ ├── package-abbreviations-on.png │ │ │ │ ├── package-explorer.png │ │ │ │ ├── packages-compound.png │ │ │ │ ├── packages-flat.png │ │ │ │ ├── packages-hierarchical.png │ │ │ │ ├── parameter-hints.png │ │ │ │ ├── postfix-templates.png │ │ │ │ ├── potential-null-ref.png │ │ │ │ ├── project-specific-jre.png │ │ │ │ ├── project-specific-settings.png │ │ │ │ ├── quick-assist-assign-statement.png │ │ │ │ ├── quick-assist-assign-statement2.png │ │ │ │ ├── quick-assist-catch-to-throws.png │ │ │ │ ├── quick-assist-create-field.png │ │ │ │ ├── quick-assist-remove-surrounding.png │ │ │ │ ├── quick-assist-shortcuts.png │ │ │ │ ├── quick-fix-create-method.png │ │ │ │ ├── quick-fix-localrename.png │ │ │ │ ├── quick-fix-uncaught-exception.png │ │ │ │ ├── quick-fix-unimplemented-methods.png │ │ │ │ ├── quick-outline-inherited.png │ │ │ │ ├── quick-refactoring-menu.png │ │ │ │ ├── quickfix-addcast1.png │ │ │ │ ├── quickfix-addcast2.png │ │ │ │ ├── quickfix-addcast3.png │ │ │ │ ├── quickfix-change-signature.png │ │ │ │ ├── quickfix-create-for-loop-array.png │ │ │ │ ├── quickfix-create-for-loop-array.txt │ │ │ │ ├── quickfix-create-for-loop-collection.png │ │ │ │ ├── quickfix-create-for-loop-collection.txt │ │ │ │ ├── quickfix_convert_to_static_import.png │ │ │ │ ├── redundant-null-check.png │ │ │ │ ├── rename-options.png │ │ │ │ ├── rich-problem-hover.png │ │ │ │ ├── search-returntype.png │ │ │ │ ├── show-junit-failure-trace-in-console-view.png │ │ │ │ ├── show_command_line.png │ │ │ │ ├── smart-javadoc.png │ │ │ │ ├── sort-by-def.png │ │ │ │ ├── spelling-correction-proposal.png │ │ │ │ ├── step-show-methodresult.png │ │ │ │ ├── substring-code-completion.png │ │ │ │ ├── subword-code-completion.png │ │ │ │ ├── suppresswarningsR31.png │ │ │ │ ├── surroundwith.png │ │ │ │ ├── swt-templates.png │ │ │ │ ├── template-for-iter.png │ │ │ │ ├── templates-create-method.png │ │ │ │ ├── todo-example.png │ │ │ │ ├── toggle-trace-point-conditional-breakpoint.png │ │ │ │ ├── toggle-trace-point-run.png │ │ │ │ ├── trigger-breakpoint-properties.png │ │ │ │ ├── trigger-breakpoint-view-ruler.png │ │ │ │ ├── type-access-rules.png │ │ │ │ ├── type-filter.png │ │ │ │ ├── type-hierarchy-structured-view.png │ │ │ │ ├── type-indicator.png │ │ │ │ ├── typing-preferences.png │ │ │ │ ├── unavoidable-generic-type-problems-example.png │ │ │ │ ├── unavoidable-generic-type-problems-example.txt │ │ │ │ ├── warn-deprecation-i.png │ │ │ │ ├── warn-deprecation-opt.png │ │ │ │ ├── warn-deprecation-x.png │ │ │ │ ├── warn-deprecation-x2.png │ │ │ │ ├── warn-deprecation-y.png │ │ │ │ ├── warn-deprecation-y2.png │ │ │ │ ├── warn-privates.png │ │ │ │ └── working-set-selection.png │ │ │ └── jdt_tips.html │ │ ├── toc.xml │ │ ├── topics_Concepts.xml │ │ ├── topics_GettingStarted.xml │ │ ├── topics_Reference.xml │ │ ├── topics_Tasks.xml │ │ ├── topics_Tips.xml │ │ ├── topics_WhatsNew.xml │ │ └── whatsNew │ │ │ ├── .DS_Store │ │ │ ├── images │ │ │ ├── compareObjects_Menu.png │ │ │ ├── compareObjects_Results1.png │ │ │ ├── compareObjects_Results2.png │ │ │ ├── compareObjects_Results3.png │ │ │ ├── compareObjects_Results4.png │ │ │ ├── compareObjects_Results5.png │ │ │ ├── detailFormatters_Primitives.png │ │ │ ├── detailFormatters_Primitives2.png │ │ │ ├── detailFormatters_Primitives3.png │ │ │ ├── exceptionObjects.png │ │ │ ├── exceptionObjects2.png │ │ │ ├── ifelse-to-switch-null-21-after.png │ │ │ ├── ifelse-to-switch-null-after.png │ │ │ ├── ifelse-to-switch-null-before.png │ │ │ ├── ifelseboolean-after.png │ │ │ ├── ifelseboolean-before.png │ │ │ ├── markdown_hover.png │ │ │ ├── markdown_javadoc.png │ │ │ ├── move-filtersbutton-to-top-other-way.png │ │ │ ├── move-filtersbutton-to-top.png │ │ │ ├── new_folding.png │ │ │ ├── pattern-instanceof-after.png │ │ │ ├── pattern-instanceof-before.png │ │ │ ├── sealed-after.png │ │ │ ├── sealed-before.png │ │ │ ├── sealed-circle.png │ │ │ ├── sealed-crescent.png │ │ │ ├── sealed-shape.png │ │ │ ├── settings_folding.png │ │ │ ├── show-all-code.png │ │ │ ├── string-concat-to-text-block-after.png │ │ │ ├── string-concat-to-text-block-before.png │ │ │ ├── ui-unused-lambda-params.png │ │ │ ├── unnamed-quickfix-after.png │ │ │ └── unnamed-quickfix-before.png │ │ │ └── jdt_whatsnew.html │ ├── org.eclipse.jdt.tips.user │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.jdt.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── build.properties │ │ ├── content │ │ │ ├── content │ │ │ │ ├── 855062302655209472 │ │ │ │ │ ├── 855062302655209472.html │ │ │ │ │ ├── C93Kg1sXsAAJuGu.mp4 │ │ │ │ │ └── C93Kg1sXsAAJuGu.webm │ │ │ │ ├── 856867463409041410 │ │ │ │ │ ├── 856867463409041410.html │ │ │ │ │ ├── C-Q0ThlXcAQpVvX.mp4 │ │ │ │ │ └── C-Q0ThlXcAQpVvX.webm │ │ │ │ ├── 860125970556223489 │ │ │ │ │ ├── 860125970556223489.html │ │ │ │ │ ├── C-_HuR4XkAMj9oJ.mp4 │ │ │ │ │ └── C-_HuR4XkAMj9oJ.webm │ │ │ │ ├── 864423629697822720 │ │ │ │ │ ├── 864423629697822720.html │ │ │ │ │ ├── C_8MakOVwAAyGbU.mp4 │ │ │ │ │ └── C_8MakOVwAAyGbU.webm │ │ │ │ ├── 870170548722184192 │ │ │ │ │ ├── 870170548722184192.html │ │ │ │ │ ├── DBNlR-jXkAAnqvd.mp4 │ │ │ │ │ └── DBNlR-jXkAAnqvd.webm │ │ │ │ ├── 874600197195796482 │ │ │ │ │ ├── 874600197195796482.html │ │ │ │ │ ├── DCM0FlMXgAE4Zi0.mp4 │ │ │ │ │ └── DCM0FlMXgAE4Zi0.webm │ │ │ │ ├── 884689449917050880 │ │ │ │ │ ├── 884689449917050880.html │ │ │ │ │ ├── DEcLzIkXkAA7Ehm.mp4 │ │ │ │ │ └── DEcLzIkXkAA7Ehm.webm │ │ │ │ ├── 888360858119745536 │ │ │ │ │ ├── 888360858119745536.html │ │ │ │ │ ├── DFQXckeXYAEYvWH.mp4 │ │ │ │ │ └── DFQXckeXYAEYvWH.webm │ │ │ │ ├── 889435990976323584 │ │ │ │ │ ├── 889435990976323584.html │ │ │ │ │ ├── DFfpOZ1XkAAODhc.mp4 │ │ │ │ │ └── DFfpOZ1XkAAODhc.webm │ │ │ │ ├── 902851499503607808 │ │ │ │ │ ├── 902851499503607808.html │ │ │ │ │ ├── DIeSlFiUwAAWjcg.mp4 │ │ │ │ │ └── DIeSlFiUwAAWjcg.webm │ │ │ │ ├── 910089046600425472 │ │ │ │ │ ├── 910089046600425472.html │ │ │ │ │ ├── DKFJClMW4AAK2pR.mp4 │ │ │ │ │ └── DKFJClMW4AAK2pR.webm │ │ │ │ ├── 920608130274381825 │ │ │ │ │ ├── 920608130274381825.html │ │ │ │ │ ├── DMaoGYlXUAMDRFF.mp4 │ │ │ │ │ └── DMaoGYlXUAMDRFF.webm │ │ │ │ ├── 927527210772258816 │ │ │ │ │ ├── 927527210772258816.html │ │ │ │ │ ├── DN88_JCXcAAJaaX.mp4 │ │ │ │ │ └── DN88_JCXcAAJaaX.webm │ │ │ │ ├── 931124796502536192 │ │ │ │ │ ├── 931124796502536192.html │ │ │ │ │ ├── DOwE-C_X0AA6bb5.mp4 │ │ │ │ │ └── DOwE-C_X0AA6bb5.webm │ │ │ │ ├── 941264226940850177 │ │ │ │ │ ├── 941264226940850177.html │ │ │ │ │ ├── DRAKxCrWkAEMkEm.mp4 │ │ │ │ │ └── DRAKxCrWkAEMkEm.webm │ │ │ │ ├── 941624342282108929 │ │ │ │ │ ├── 941624342282108929.html │ │ │ │ │ ├── DRFSS0sWsAEDJb-.mp4 │ │ │ │ │ └── DRFSS0sWsAEDJb-.webm │ │ │ │ ├── 949238007051235328 │ │ │ │ │ ├── 949238007051235328.html │ │ │ │ │ ├── DSxe5wyW4AAebyT.mp4 │ │ │ │ │ └── DSxe5wyW4AAebyT.webm │ │ │ │ ├── 950773930775793664 │ │ │ │ │ ├── 950773930775793664.html │ │ │ │ │ ├── DTHT0RbXUAAnGoJ.mp4 │ │ │ │ │ └── DTHT0RbXUAAnGoJ.webm │ │ │ │ ├── 976836214857740288 │ │ │ │ │ ├── 976836214857740288.html │ │ │ │ │ ├── DY5qzHEXkAAc-7O.mp4 │ │ │ │ │ └── DY5qzHEXkAAc-7O.webm │ │ │ │ └── codecompletion │ │ │ │ │ ├── codecompletion.html │ │ │ │ │ └── images │ │ │ │ │ └── codecompletion.gif │ │ │ └── provider.json │ │ ├── forceQualifierUpdate.txt │ │ ├── plugin.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── jdt │ │ │ └── tips │ │ │ └── user │ │ │ └── internal │ │ │ ├── JDTTipProvider.java │ │ │ ├── Messages.java │ │ │ └── messages.properties │ ├── org.eclipse.platform.doc.isv │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── book.css │ │ ├── build.properties │ │ ├── forceQualifierUpdate.txt │ │ ├── guide │ │ │ ├── ant.htm │ │ │ ├── ant_contributing_task.htm │ │ │ ├── ant_developing.htm │ │ │ ├── ant_eclipse_tasks.htm │ │ │ ├── ant_expanding_classpath.htm │ │ │ ├── ant_running_buildfiles_programmatically.htm │ │ │ ├── arch.htm │ │ │ ├── arch_struct.htm │ │ │ ├── bundle_security.html │ │ │ ├── cnf.htm │ │ │ ├── cnf_config.htm │ │ │ ├── cnf_operation.htm │ │ │ ├── cnf_rcp.htm │ │ │ ├── cnf_steps.htm │ │ │ ├── cnf_steps_content.htm │ │ │ ├── cnf_steps_general.htm │ │ │ ├── cnf_steps_rn_migration.htm │ │ │ ├── cnf_troubleshooting.htm │ │ │ ├── compare.htm │ │ │ ├── compare_beyond.htm │ │ │ ├── compare_contentviewer.htm │ │ │ ├── compare_streammerger.htm │ │ │ ├── compare_structureviewer.htm │ │ │ ├── console_shell.htm │ │ │ ├── debug.htm │ │ │ ├── debug_breakpoints.htm │ │ │ ├── debug_debug.htm │ │ │ ├── debug_expressions.htm │ │ │ ├── debug_launch.htm │ │ │ ├── debug_launch_adding.htm │ │ │ ├── debug_launch_comparators.htm │ │ │ ├── debug_launch_groups.htm │ │ │ ├── debug_launch_java.htm │ │ │ ├── debug_launch_processfactories.htm │ │ │ ├── debug_launch_sourcelocators.htm │ │ │ ├── debug_launch_status.htm │ │ │ ├── debug_launch_ui.htm │ │ │ ├── debug_launch_uiimages.htm │ │ │ ├── debug_launch_uishortcuts.htm │ │ │ ├── debug_model.htm │ │ │ ├── debug_presentation.htm │ │ │ ├── debug_ui.htm │ │ │ ├── dialogs.htm │ │ │ ├── dialogs_FilteredItemsSelectionDialog.htm │ │ │ ├── dialogs_FilteredItemsSelectionDialog_example.htm │ │ │ ├── dialogs_FilteredItemsSelectionDialog_example_advanced.htm │ │ │ ├── dialogs_applications.htm │ │ │ ├── dialogs_settings.htm │ │ │ ├── dialogs_standard.htm │ │ │ ├── dialogs_wizards.htm │ │ │ ├── dialogs_wizards_exportWizards.htm │ │ │ ├── dialogs_wizards_extensions.htm │ │ │ ├── dialogs_wizards_importWizards.htm │ │ │ ├── dialogs_wizards_multipage.htm │ │ │ ├── dialogs_wizards_newWizards.htm │ │ │ ├── dialogs_wizards_wizarddialogs.htm │ │ │ ├── editors.htm │ │ │ ├── editors_actions.htm │ │ │ ├── editors_annotations.htm │ │ │ ├── editors_contentassist.htm │ │ │ ├── editors_documents.htm │ │ │ ├── editors_genericeditor.htm │ │ │ ├── editors_highlighting.htm │ │ │ ├── editors_hover.htm │ │ │ ├── editors_jface.htm │ │ │ ├── editors_sourceviewers.htm │ │ │ ├── editors_utilities.htm │ │ │ ├── editors_workbench.htm │ │ │ ├── editors_workbench_outliner.htm │ │ │ ├── firstplugin.htm │ │ │ ├── firstplugin_btb.htm │ │ │ ├── firstplugin_create.htm │ │ │ ├── firstplugin_manifest.htm │ │ │ ├── firstplugin_minimal.htm │ │ │ ├── firstplugin_run.htm │ │ │ ├── firstplugin_view.htm │ │ │ ├── forms.htm │ │ │ ├── forms_colors.htm │ │ │ ├── forms_controls.htm │ │ │ ├── forms_controls_form.htm │ │ │ ├── forms_controls_link.htm │ │ │ ├── forms_controls_section.htm │ │ │ ├── forms_controls_text.htm │ │ │ ├── forms_controls_text_markup.htm │ │ │ ├── forms_editors.htm │ │ │ ├── forms_layouts.htm │ │ │ ├── forms_layouts_column.htm │ │ │ ├── forms_layouts_table.htm │ │ │ ├── forms_managed.htm │ │ │ ├── forms_master_details.htm │ │ │ ├── httpservice.htm │ │ │ ├── images │ │ │ │ ├── about.png │ │ │ │ ├── actionseteditorretargets.png │ │ │ │ ├── actionsetoutlineretargets.png │ │ │ │ ├── actionsets.png │ │ │ │ ├── arch-npi.svg │ │ │ │ ├── basicIntro.png │ │ │ │ ├── browserexample.png │ │ │ │ ├── cheatsheets.png │ │ │ │ ├── common_tab.png │ │ │ │ ├── contributions_global.png │ │ │ │ ├── contributions_popup.png │ │ │ │ ├── contributions_view_dropdown.png │ │ │ │ ├── contributions_window.png │ │ │ │ ├── cvsdecorators.png │ │ │ │ ├── editorAction.png │ │ │ │ ├── editorInputLabel.png │ │ │ │ ├── editormenu.png │ │ │ │ ├── editoroutlineretargets.png │ │ │ │ ├── editorretargets.png │ │ │ │ ├── editortoolbar.png │ │ │ │ ├── efs-newProject.png │ │ │ │ ├── emptyworkbench.png │ │ │ │ ├── equinox_secure_storage_data.svg │ │ │ │ ├── equinox_secure_storage_prov.svg │ │ │ │ ├── exportwizard.png │ │ │ │ ├── filetypes.png │ │ │ │ ├── filteredResourcesSelectionDialogExample.png │ │ │ │ ├── filteredResourcesSelectionDialogExampleAdvance1.png │ │ │ │ ├── filteredResourcesSelectionDialogExampleAdvance2.png │ │ │ │ ├── filteredResourcesSelectionDialogExampleAdvance3.png │ │ │ │ ├── filtersmenu.png │ │ │ │ ├── filtersselection.png │ │ │ │ ├── firstpluginpde.png │ │ │ │ ├── genericoutliner.png │ │ │ │ ├── help_contents.png │ │ │ │ ├── helpplaceholder.png │ │ │ │ ├── ignore.png │ │ │ │ ├── importwizard.png │ │ │ │ ├── improved-launch-groups.png │ │ │ │ ├── infopops.png │ │ │ │ ├── javacheatsheet.png │ │ │ │ ├── javacontentassist.png │ │ │ │ ├── javacontentoutline.png │ │ │ │ ├── javacontextassist.png │ │ │ │ ├── javaeditor.png │ │ │ │ ├── javaeditorcontextmenu.png │ │ │ │ ├── javaeditoroverviewruler.png │ │ │ │ ├── javaeditorsquiggly.png │ │ │ │ ├── javaeditorverticalruler.png │ │ │ │ ├── javarulerhover.png │ │ │ │ ├── javatexthover.png │ │ │ │ ├── keybindings.png │ │ │ │ ├── launch.jpg │ │ │ │ ├── launchImage.png │ │ │ │ ├── lcd.png │ │ │ │ ├── markerquickfixmenu.png │ │ │ │ ├── markerresolution.png │ │ │ │ ├── navigator.png │ │ │ │ ├── newwizardlist.png │ │ │ │ ├── newwizardmenu.png │ │ │ │ ├── no_category.png │ │ │ │ ├── p2allbundles.png │ │ │ │ ├── p2allbundlesinstalled.png │ │ │ │ ├── p2cloudinstall.png │ │ │ │ ├── p2forcedupdate.png │ │ │ │ ├── p2reuse.png │ │ │ │ ├── perspectivemenu.png │ │ │ │ ├── prbfil.png │ │ │ │ ├── preferences.png │ │ │ │ ├── prob.png │ │ │ │ ├── problems_view_filters.png │ │ │ │ ├── problems_view_groupByType.png │ │ │ │ ├── problems_view_markerTypeCat.png │ │ │ │ ├── problemsview_groups.png │ │ │ │ ├── projectset.png │ │ │ │ ├── quickfix.png │ │ │ │ ├── readmeactionset.png │ │ │ │ ├── readmeactionsetmenu.png │ │ │ │ ├── readmeactionsettoolbar.png │ │ │ │ ├── readmedialog.png │ │ │ │ ├── readmemarkerhelp.png │ │ │ │ ├── readmemarkermenu.png │ │ │ │ ├── readmeoutliner.png │ │ │ │ ├── readmeoutlinerpopup.png │ │ │ │ ├── readmeoverview.png │ │ │ │ ├── readmepopupmenu.png │ │ │ │ ├── readmepreferences.png │ │ │ │ ├── readmeproperties.png │ │ │ │ ├── readmetrim.png │ │ │ │ ├── readmetrimxml.png │ │ │ │ ├── readmeview.png │ │ │ │ ├── readmeviewaction.png │ │ │ │ ├── readmeviewcommand.png │ │ │ │ ├── readmewizard.png │ │ │ │ ├── sample.gif │ │ │ │ ├── sdk-arch.svg │ │ │ │ ├── showview.png │ │ │ │ ├── singleclick.png │ │ │ │ ├── team-version_controlled.png │ │ │ │ ├── team_synchronize_example_localhistory_overview.png │ │ │ │ ├── teamdecorators.png │ │ │ │ ├── teamintegration.png │ │ │ │ ├── teamprefs.png │ │ │ │ ├── texteditor.png │ │ │ │ ├── textencoding.png │ │ │ │ ├── wiz_arch.svg │ │ │ │ ├── workbench.png │ │ │ │ ├── workbench_decomposed.png │ │ │ │ ├── workbenchdecorators.png │ │ │ │ ├── workbenchwithhello.png │ │ │ │ ├── workingSetTypes.png │ │ │ │ └── workingset.png │ │ │ ├── int.htm │ │ │ ├── int_eclipse.htm │ │ │ ├── int_goal.htm │ │ │ ├── int_who.htm │ │ │ ├── java_web_start.htm │ │ │ ├── jface.htm │ │ │ ├── jface_actions.htm │ │ │ ├── jface_fieldassist.htm │ │ │ ├── jface_operations.htm │ │ │ ├── jface_resources.htm │ │ │ ├── jface_viewers.htm │ │ │ ├── login_extensions.html │ │ │ ├── network.htm │ │ │ ├── p2_actions_touchpoints.html │ │ │ ├── p2_api_overview.htm │ │ │ ├── p2_category_generation.htm │ │ │ ├── p2_composite_repositories.htm │ │ │ ├── p2_customizing_metadata.html │ │ │ ├── p2_director.html │ │ │ ├── p2_metadata.html │ │ │ ├── p2_mirror.html │ │ │ ├── p2_overview.htm │ │ │ ├── p2_pgp.html │ │ │ ├── p2_publisher.html │ │ │ ├── p2_publishingtasks.htm │ │ │ ├── p2_repositorytasks.htm │ │ │ ├── p2_startup.htm │ │ │ ├── p2_ui.htm │ │ │ ├── p2_uipolicy.htm │ │ │ ├── p2_uireuse.htm │ │ │ ├── preferences_prefs.htm │ │ │ ├── preferences_prefs_contribute.htm │ │ │ ├── preferences_prefs_fieldeditors.htm │ │ │ ├── preferences_prefs_implement.htm │ │ │ ├── preferences_prop_contribute.htm │ │ │ ├── preferences_prop_implement.htm │ │ │ ├── product.htm │ │ │ ├── product_config_install.htm │ │ │ ├── product_configproduct.htm │ │ │ ├── product_def.htm │ │ │ ├── product_def_extpt.htm │ │ │ ├── product_def_feature.htm │ │ │ ├── product_def_nl.htm │ │ │ ├── product_def_plugins.htm │ │ │ ├── product_extension.htm │ │ │ ├── product_open_file.htm │ │ │ ├── product_update.htm │ │ │ ├── rcp.htm │ │ │ ├── resAdv.htm │ │ │ ├── resAdv_batching.htm │ │ │ ├── resAdv_buildconfigs.htm │ │ │ ├── resAdv_builders.htm │ │ │ ├── resAdv_concurrency.htm │ │ │ ├── resAdv_derived.htm │ │ │ ├── resAdv_efs_api.htm │ │ │ ├── resAdv_efs_intro.htm │ │ │ ├── resAdv_efs_providers.htm │ │ │ ├── resAdv_efs_resources.htm │ │ │ ├── resAdv_events.htm │ │ │ ├── resAdv_hooks.htm │ │ │ ├── resAdv_markers.htm │ │ │ ├── resAdv_modify.htm │ │ │ ├── resAdv_natures.htm │ │ │ ├── resAdv_refresh.htm │ │ │ ├── resAdv_saving.htm │ │ │ ├── resAdv_variables.htm │ │ │ ├── resInt.htm │ │ │ ├── resInt_content.htm │ │ │ ├── resInt_filesystem.htm │ │ │ ├── resInt_filters.htm │ │ │ ├── resInt_linked.htm │ │ │ ├── resInt_preferences.htm │ │ │ ├── resInt_properties.htm │ │ │ ├── resInt_virtual.htm │ │ │ ├── resInt_workspace.htm │ │ │ ├── runtime.htm │ │ │ ├── runtime_app_model.htm │ │ │ ├── runtime_components.htm │ │ │ ├── runtime_content.htm │ │ │ ├── runtime_content_contributing.htm │ │ │ ├── runtime_content_using.htm │ │ │ ├── runtime_jobs.htm │ │ │ ├── runtime_jobs_locks.htm │ │ │ ├── runtime_jobs_progress.htm │ │ │ ├── runtime_jobs_rules.htm │ │ │ ├── runtime_jobs_scheduling.htm │ │ │ ├── runtime_model.htm │ │ │ ├── runtime_model_bundles.htm │ │ │ ├── runtime_preferences.htm │ │ │ ├── runtime_registry.htm │ │ │ ├── search.htm │ │ │ ├── search_page.htm │ │ │ ├── search_result.htm │ │ │ ├── secure_storage.htm │ │ │ ├── secure_storage_architecture.htm │ │ │ ├── secure_storage_dev.htm │ │ │ ├── secure_storage_providers.htm │ │ │ ├── st_design.htm │ │ │ ├── st_structured_text.htm │ │ │ ├── st_text_types.htm │ │ │ ├── swt.htm │ │ │ ├── swt_error.htm │ │ │ ├── swt_examples.htm │ │ │ ├── swt_graphics.htm │ │ │ ├── swt_layouts.htm │ │ │ ├── swt_layouts_custom.htm │ │ │ ├── swt_threading.htm │ │ │ ├── swt_widgets.htm │ │ │ ├── swt_widgets_controls.htm │ │ │ ├── swt_widgets_custom.htm │ │ │ ├── swt_widgets_events.htm │ │ │ ├── team.htm │ │ │ ├── team_howto.htm │ │ │ ├── team_model.htm │ │ │ ├── team_model_model.htm │ │ │ ├── team_model_repo.htm │ │ │ ├── team_provider_repository.htm │ │ │ ├── team_resources.htm │ │ │ ├── team_resources_filetypes.htm │ │ │ ├── team_resources_linked.htm │ │ │ ├── team_resources_private.htm │ │ │ ├── team_resources_projects.htm │ │ │ ├── team_synchronize.htm │ │ │ ├── team_synchronize_beyond_basics.htm │ │ │ ├── team_synchronize_localhistory_example.htm │ │ │ ├── team_ui_actions.htm │ │ │ ├── team_ui_decorators.htm │ │ │ ├── team_ui_history.htm │ │ │ ├── team_ui_prefs.htm │ │ │ ├── ua.htm │ │ │ ├── ua_cheatsheet.htm │ │ │ ├── ua_cheatsheet_composite.htm │ │ │ ├── ua_cheatsheet_composite_content.htm │ │ │ ├── ua_cheatsheet_guidelines.htm │ │ │ ├── ua_cheatsheet_simple.htm │ │ │ ├── ua_dynamic.htm │ │ │ ├── ua_dynamic_extensions.htm │ │ │ ├── ua_dynamic_filters.htm │ │ │ ├── ua_dynamic_includes.htm │ │ │ ├── ua_help.htm │ │ │ ├── ua_help_abstract_scope.htm │ │ │ ├── ua_help_content.htm │ │ │ ├── ua_help_content_active.htm │ │ │ ├── ua_help_content_active_action.htm │ │ │ ├── ua_help_content_active_debug.htm │ │ │ ├── ua_help_content_active_invoke.htm │ │ │ ├── ua_help_content_child_links.htm │ │ │ ├── ua_help_content_command.htm │ │ │ ├── ua_help_content_command_authoring.htm │ │ │ ├── ua_help_content_criteria.htm │ │ │ ├── ua_help_content_files.htm │ │ │ ├── ua_help_content_manifest.htm │ │ │ ├── ua_help_content_nested.htm │ │ │ ├── ua_help_content_process.htm │ │ │ ├── ua_help_content_remote.htm │ │ │ ├── ua_help_content_toc.htm │ │ │ ├── ua_help_content_xhtml.htm │ │ │ ├── ua_help_context.htm │ │ │ ├── ua_help_context_dynamic.htm │ │ │ ├── ua_help_context_id.htm │ │ │ ├── ua_help_context_infopops.htm │ │ │ ├── ua_help_context_xml.htm │ │ │ ├── ua_help_infocenter_preferences.htm │ │ │ ├── ua_help_menu.htm │ │ │ ├── ua_help_placeholders.htm │ │ │ ├── ua_help_search.htm │ │ │ ├── ua_help_search_types.htm │ │ │ ├── ua_help_setup.htm │ │ │ ├── ua_help_setup_about.htm │ │ │ ├── ua_help_setup_help_data.htm │ │ │ ├── ua_help_setup_infocenter.htm │ │ │ ├── ua_help_setup_nav.htm │ │ │ ├── ua_help_setup_preferences.htm │ │ │ ├── ua_help_setup_preindex.htm │ │ │ ├── ua_help_setup_rcp.htm │ │ │ ├── ua_help_setup_standalone.htm │ │ │ ├── ua_help_war.htm │ │ │ ├── ua_intro.htm │ │ │ ├── ua_intro_cust_intro_part.htm │ │ │ ├── ua_intro_cust_static.htm │ │ │ ├── ua_intro_define_content.htm │ │ │ ├── ua_intro_defining.htm │ │ │ ├── ua_intro_defining_config.htm │ │ │ ├── ua_intro_ext_custom_url.htm │ │ │ ├── ua_intro_ext_standbypart.htm │ │ │ ├── ua_intro_ext_theme.htm │ │ │ ├── ua_intro_extending.htm │ │ │ ├── ua_intro_extending_content.htm │ │ │ ├── ua_intro_hello_world.htm │ │ │ ├── ua_intro_minimal.htm │ │ │ ├── ua_intro_swt_properties.htm │ │ │ ├── ua_intro_universal.htm │ │ │ ├── ua_intro_universal_contributing.htm │ │ │ ├── ua_intro_universal_defaults.htm │ │ │ ├── ua_intro_universal_extending.htm │ │ │ ├── ua_intro_universal_links.htm │ │ │ ├── ua_intro_universal_preference.htm │ │ │ ├── ua_intro_xhtml.htm │ │ │ ├── ua_statushandling.htm │ │ │ ├── ua_statushandling_defining.htm │ │ │ ├── ua_statushandling_sample.htm │ │ │ ├── workbench.htm │ │ │ ├── workbench_advext_activities.htm │ │ │ ├── workbench_advext_contexts.htm │ │ │ ├── workbench_advext_decorators.htm │ │ │ ├── workbench_advext_elementFactories.htm │ │ │ ├── workbench_advext_perspectiveExtension.htm │ │ │ ├── workbench_advext_perspectives.htm │ │ │ ├── workbench_advext_resourceFilters.htm │ │ │ ├── workbench_basicext_editors.htm │ │ │ ├── workbench_basicext_views.htm │ │ │ ├── workbench_cmd.htm │ │ │ ├── workbench_cmd_bindings.htm │ │ │ ├── workbench_cmd_commands.htm │ │ │ ├── workbench_cmd_expressions.htm │ │ │ ├── workbench_cmd_handlers.htm │ │ │ ├── workbench_cmd_menus.htm │ │ │ ├── workbench_jobs.htm │ │ │ ├── workbench_menus.htm │ │ │ ├── workbench_perspectives.htm │ │ │ ├── workbench_plugin.htm │ │ │ ├── workbench_resources.htm │ │ │ ├── workbench_scalability.htm │ │ │ ├── workbench_statushandling.htm │ │ │ ├── workbench_statushandling_defining.htm │ │ │ ├── workbench_structure.htm │ │ │ ├── wrkAdv.htm │ │ │ ├── wrkAdv_accessibility.htm │ │ │ ├── wrkAdv_commands_handlers.htm │ │ │ ├── wrkAdv_efs_resources.htm │ │ │ ├── wrkAdv_encoding.htm │ │ │ ├── wrkAdv_keyBindings.htm │ │ │ ├── wrkAdv_keyBindings_accelConfig.htm │ │ │ ├── wrkAdv_keyBindings_accelSet.htm │ │ │ ├── wrkAdv_keyBindings_actionDef.htm │ │ │ ├── wrkAdv_keyBindings_contexts.htm │ │ │ ├── wrkAdv_marker_support.htm │ │ │ ├── wrkAdv_markerhelp.htm │ │ │ ├── wrkAdv_markerresolution.htm │ │ │ ├── wrkAdv_markers.htm │ │ │ ├── wrkAdv_services.htm │ │ │ ├── wrkAdv_singleclick.htm │ │ │ ├── wrkAdv_undo.htm │ │ │ ├── wrkAdv_undo_ide.htm │ │ │ └── wrkAdv_workingsets.htm │ │ ├── notices.html │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── pom.xml │ │ ├── porting │ │ │ ├── 4.10 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.11 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.12 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.13 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.14 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.15 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.16 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.17 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.18 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.19 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.20 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.21 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.22 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.23 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.24 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.25 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.26 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.27 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.28 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.29 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.3 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.30 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.31 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.32 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.33 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.34 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.35 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.36 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.4 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.5 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.6 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.7 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.8 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── 4.9 │ │ │ │ ├── faq.html │ │ │ │ ├── incompatibilities.html │ │ │ │ └── recommended.html │ │ │ ├── eclipse_4_10_porting_guide.html │ │ │ ├── eclipse_4_11_porting_guide.html │ │ │ ├── eclipse_4_12_porting_guide.html │ │ │ ├── eclipse_4_13_porting_guide.html │ │ │ ├── eclipse_4_14_porting_guide.html │ │ │ ├── eclipse_4_15_porting_guide.html │ │ │ ├── eclipse_4_16_porting_guide.html │ │ │ ├── eclipse_4_17_porting_guide.html │ │ │ ├── eclipse_4_18_porting_guide.html │ │ │ ├── eclipse_4_19_porting_guide.html │ │ │ ├── eclipse_4_20_porting_guide.html │ │ │ ├── eclipse_4_21_porting_guide.html │ │ │ ├── eclipse_4_22_porting_guide.html │ │ │ ├── eclipse_4_23_porting_guide.html │ │ │ ├── eclipse_4_24_porting_guide.html │ │ │ ├── eclipse_4_25_porting_guide.html │ │ │ ├── eclipse_4_26_porting_guide.html │ │ │ ├── eclipse_4_27_porting_guide.html │ │ │ ├── eclipse_4_28_porting_guide.html │ │ │ ├── eclipse_4_29_porting_guide.html │ │ │ ├── eclipse_4_30_porting_guide.html │ │ │ ├── eclipse_4_31_porting_guide.html │ │ │ ├── eclipse_4_32_porting_guide.html │ │ │ ├── eclipse_4_33_porting_guide.html │ │ │ ├── eclipse_4_34_porting_guide.html │ │ │ ├── eclipse_4_35_porting_guide.html │ │ │ ├── eclipse_4_36_porting_guide.html │ │ │ ├── eclipse_4_3_porting_guide.html │ │ │ ├── eclipse_4_4_porting_guide.html │ │ │ ├── eclipse_4_5_porting_guide.html │ │ │ ├── eclipse_4_6_porting_guide.html │ │ │ ├── eclipse_4_7_porting_guide.html │ │ │ ├── eclipse_4_8_porting_guide.html │ │ │ ├── eclipse_4_9_porting_guide.html │ │ │ └── removals.html │ │ ├── questions │ │ │ └── index.html │ │ ├── reference │ │ │ ├── .gitignore │ │ │ ├── extension-points │ │ │ │ └── index.html │ │ │ ├── misc │ │ │ │ ├── about_customization.html │ │ │ │ ├── api-usage-rules.html │ │ │ │ ├── bidi.html │ │ │ │ ├── bidi.png │ │ │ │ ├── buddy_loading.html │ │ │ │ ├── bundle_manifest.html │ │ │ │ ├── eclipse-install.html │ │ │ │ ├── eclipsestarter.html │ │ │ │ ├── feature_archive.html │ │ │ │ ├── feature_manifest.html │ │ │ │ ├── index.html │ │ │ │ ├── launcher.html │ │ │ │ ├── launcher_ini.html │ │ │ │ ├── message_bundles.html │ │ │ │ ├── multi_user_installs.html │ │ │ │ ├── naming.html │ │ │ │ ├── overview-platform.html │ │ │ │ ├── p2_dropins_format.html │ │ │ │ ├── platform-scheme-uri.html │ │ │ │ ├── plugin_archive.html │ │ │ │ ├── plugin_dtd.html │ │ │ │ ├── plugin_manifest.html │ │ │ │ ├── project_description_file.html │ │ │ │ ├── runtime-options.html │ │ │ │ ├── terminology.html │ │ │ │ └── ui_accessibility_tips.html │ │ │ └── services │ │ │ │ └── index.html │ │ ├── samples │ │ │ └── samples.html │ │ ├── schema.css │ │ ├── toc.xml │ │ ├── topics_Guide.xml │ │ ├── topics_Porting.xml │ │ ├── topics_Questions.xml │ │ ├── topics_Reference.xml │ │ ├── topics_Samples.xml │ │ ├── topics_WhatsNew.xml │ │ ├── whatsNew │ │ │ ├── .platform_isv_whatsnew.html.swp │ │ │ └── platform_isv_whatsnew.html │ │ └── workbench.png │ ├── org.eclipse.platform.doc.tips │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ └── org.eclipse.jdt.ui.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── forceQualifierUpdate.txt │ │ ├── icons │ │ │ └── 48 │ │ │ │ └── tips.png │ │ ├── plugin.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ └── platform │ │ │ └── doc │ │ │ └── tips │ │ │ ├── HtmlExtractor.java │ │ │ ├── HtmlTableTipProvider.java │ │ │ ├── Messages.java │ │ │ └── messages.properties │ └── org.eclipse.platform.doc.user │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── book.css │ │ ├── build.properties │ │ ├── concepts │ │ ├── accessibility │ │ │ ├── accessmain.htm │ │ │ ├── colordialog.htm │ │ │ ├── fontsandcolors.htm │ │ │ ├── keyboardshortcuts.htm │ │ │ ├── navigation.htm │ │ │ └── text_editor.htm │ │ ├── cbookmrk.htm │ │ ├── cdecorations.htm │ │ ├── concepts-11.htm │ │ ├── concepts-12.htm │ │ ├── concepts-13.htm │ │ ├── concepts-17.htm │ │ ├── concepts-17a.htm │ │ ├── concepts-18.htm │ │ ├── concepts-2.htm │ │ ├── concepts-21a.htm │ │ ├── concepts-22.htm │ │ ├── concepts-25.htm │ │ ├── concepts-29.htm │ │ ├── concepts-4.htm │ │ ├── concepts-5.htm │ │ ├── concepts-6.htm │ │ ├── concepts-6a.htm │ │ ├── concepts-antexttools.htm │ │ ├── concepts-antsupport.htm │ │ ├── concepts-exttools.htm │ │ ├── coutline.htm │ │ ├── cpathvars.htm │ │ ├── cprbview.htm │ │ ├── cpropview.htm │ │ ├── csearchview.htm │ │ ├── ctskview.htm │ │ ├── cworkset.htm │ │ ├── help.htm │ │ ├── help_view.htm │ │ ├── resourcefilters.htm │ │ ├── virtualfolders.htm │ │ └── welcome.htm │ │ ├── contexts_AntUI.xml │ │ ├── contexts_CommonNavigator.xml │ │ ├── contexts_Compare.xml │ │ ├── contexts_ExternalTools.xml │ │ ├── contexts_JSch.xml │ │ ├── contexts_Net.xml │ │ ├── contexts_P2.xml │ │ ├── contexts_Search.xml │ │ ├── contexts_SecureStorage.xml │ │ ├── contexts_Team.xml │ │ ├── contexts_UserAssistance.xml │ │ ├── contexts_Workbench.xml │ │ ├── forceQualifierUpdate.txt │ │ ├── gettingStarted │ │ ├── gs_htmldoc_book.book │ │ ├── intro │ │ │ └── overview.htm │ │ ├── qs-01.htm │ │ ├── qs-02a.htm │ │ ├── qs-02b.htm │ │ ├── qs-02d.xhtml │ │ ├── qs-02e.htm │ │ ├── qs-07a.htm │ │ ├── qs-07b.htm │ │ ├── qs-07c.htm │ │ ├── qs-07d.htm │ │ ├── qs-10b.htm │ │ ├── qs-12.htm │ │ ├── qs-12b.htm │ │ ├── qs-12c.htm │ │ ├── qs-13.htm │ │ ├── qs-24a.xhtml │ │ ├── qs-31a.htm │ │ ├── qs-31b.htm │ │ ├── qs-31c.htm │ │ ├── qs-32.htm │ │ ├── qs-34a.xhtml │ │ ├── qs-34b.xhtml │ │ ├── qs-34c.xhtml │ │ ├── qs-34d.htm │ │ ├── qs-35.htm │ │ ├── qs-35b.htm │ │ ├── qs-35c.htm │ │ ├── qs-35d.htm │ │ ├── qs-36.htm │ │ ├── qs-36a.htm │ │ ├── qs-36b.htm │ │ ├── qs-36c.htm │ │ ├── qs-37-2b.htm │ │ ├── qs-37-2d.htm │ │ ├── qs-37-2d2.htm │ │ ├── qs-37-2f.htm │ │ ├── qs-37-3b.htm │ │ ├── qs-37-3c.htm │ │ ├── qs-37-3e.htm │ │ ├── qs-37-3f.htm │ │ ├── qs-39.htm │ │ ├── qs-39d.htm │ │ ├── qs-39e.htm │ │ ├── qs-39f.htm │ │ ├── qs-39g.htm │ │ ├── qs-43.htm │ │ ├── qs-43b.htm │ │ ├── qs-43c.htm │ │ ├── qs-43e.htm │ │ ├── qs-43f.htm │ │ ├── qs-52.htm │ │ ├── qs-52c.htm │ │ ├── qs-52d.htm │ │ ├── qs-52e.htm │ │ ├── qs-55.htm │ │ ├── qs-55b.htm │ │ ├── qs-80_ant.htm │ │ ├── qs-81_basics.htm │ │ ├── qs-82_create.htm │ │ ├── qs-83_edit.htm │ │ ├── qs-84_run_ant.htm │ │ ├── qs-85_ant_configs.htm │ │ ├── qs-85a_ant_view.htm │ │ ├── qs-92_project_builders.htm │ │ ├── qs-93_project_builder.htm │ │ ├── qs-93a_project_builder_targets.htm │ │ ├── qs-94_run_pj.htm │ │ ├── qs-95_external_tools.htm │ │ ├── qs-96_non_ant_pjs.htm │ │ └── qs-97_standalone_ets.htm │ │ ├── images │ │ ├── Image1.png │ │ ├── Image11_new_wizard.png │ │ ├── Image12_new_project_wizard.png │ │ ├── Image13_project_in_nav.png │ │ ├── Image14_new_folder_wizard.png │ │ ├── Image15_project_depend.png │ │ ├── Image16_new_pulldown.png │ │ ├── Image17b_unsaved_changes.png │ │ ├── Image19_close_on_tab.png │ │ ├── Image206_persp_saveas.png │ │ ├── Image207_persp_sel.png │ │ ├── Image208_view_sel.png │ │ ├── Image20_nav_with_resources.png │ │ ├── Image210_filefilter.png │ │ ├── Image211_perspective.png │ │ ├── Image214_toobar_rsrc.png │ │ ├── Image215_toolbar_view.png │ │ ├── Image216_history_view.png │ │ ├── Image221_pref_fe.png │ │ ├── Image229_editor_popup.png │ │ ├── Image229_view_popup.png │ │ ├── Image230_editor_area.png │ │ ├── Image231_marker_bar.png │ │ ├── Image232_marker_context.png │ │ ├── Image242_repo_view.png │ │ ├── Image244_bmark_view.png │ │ ├── Image245_sync_view.png │ │ ├── Image249_repo_wiz.png │ │ ├── Image258_perps_custom.png │ │ ├── Image261_import_sel.png │ │ ├── Image262_import_file.png │ │ ├── Image262_import_preferences.png │ │ ├── Image263_import_cvs.png │ │ ├── Image263_import_zip.png │ │ ├── Image264_existing_project.png │ │ ├── Image264_export_sel.png │ │ ├── Image265_export_file.png │ │ ├── Image265_team_project.png │ │ ├── Image266_export_ant.png │ │ ├── Image266_export_preferences.png │ │ ├── Image266_export_zip.png │ │ ├── Image268_export_team.png │ │ ├── Image269_merge_init.png │ │ ├── Image273_local_hist.png │ │ ├── Image276_available_content.png │ │ ├── Image276_available_filters.png │ │ ├── Image276_user_filters.png │ │ ├── Image30_goto_resource.png │ │ ├── Image38_import.png │ │ ├── Image39_import_tree.png │ │ ├── Image3_single.png │ │ ├── Image3_tabbed.png │ │ ├── Image40_import_target.png │ │ ├── Image42_export.png │ │ ├── Image43_export_tree.png │ │ ├── Image48_move.png │ │ ├── Image48_rename_done.png │ │ ├── Image49_3_way_compare.png │ │ ├── Image55_reset.png │ │ ├── Image5_text_editor.png │ │ ├── Image602_tar_assist.png │ │ ├── Image616_et_dropdown.png │ │ ├── Image619_ole.png │ │ ├── Image70_select_pers.png │ │ ├── Image70_shortcut4.png │ │ ├── Image7_view_pulldown.png │ │ ├── Image80_compare_editor.png │ │ ├── Image80_compare_editor2.png │ │ ├── Image82_import2_project_fred.png │ │ ├── Image82_import3_project_fred.png │ │ ├── Image82_import4_project_fred.png │ │ ├── Image82_import_project_fred.png │ │ ├── Image82_nav.png │ │ ├── Image82_repo_new.png │ │ ├── Image82_repo_new3.png │ │ ├── Image82_repo_sync1.png │ │ ├── Image82_repo_sync2.png │ │ ├── Image82_repo_team.png │ │ ├── Image82_repo_view1.png │ │ ├── Image83_cvs_savedpasswords.png │ │ ├── Image83_fred_verson.png │ │ ├── Image83_fred_verson2.png │ │ ├── Image83_jane-history.png │ │ ├── Image83_jane-sync.png │ │ ├── Image83_jane1.png │ │ ├── Image83_jane3_conflict.png │ │ ├── Image83_jane3_conflict2.png │ │ ├── Image84_replace2.png │ │ ├── Image84_replace3.png │ │ ├── Image8_view.png │ │ ├── Image90_locked_toolbar.png │ │ ├── Image90_unlocked_toolbar.png │ │ ├── Image_file_folder_operation.png │ │ ├── Image_file_operation.png │ │ ├── Image_pref_inup.png │ │ ├── add_co.svg │ │ ├── addbkmrk_co.svg │ │ ├── addtsk_tsk.svg │ │ ├── alpha_mode.svg │ │ ├── ancestorpane_co.svg │ │ ├── ant_builder_main_tab.png │ │ ├── ant_builder_refresh_tab.png │ │ ├── ant_builder_targets_tab.png │ │ ├── ant_buildfile.svg │ │ ├── ant_classpath_tab.png │ │ ├── ant_run_dialog.png │ │ ├── ant_tar_assist.png │ │ ├── ant_target_err.svg │ │ ├── ant_targets.svg │ │ ├── ant_view.svg │ │ ├── arch-npi.svg │ │ ├── backward_nav.svg │ │ ├── block_selection_mode.svg │ │ ├── bookmark_obj.svg │ │ ├── brkp_obj.svg │ │ ├── build_exec.svg │ │ ├── build_tab.svg │ │ ├── builder_property_page.png │ │ ├── cheatsheet_composite_running.png │ │ ├── cheatsheet_composite_start.png │ │ ├── classpath_obj.svg │ │ ├── close_view.svg │ │ ├── collapse_expand_all.svg │ │ ├── compare-editor-diff-change.png │ │ ├── compare-editor.png │ │ ├── complete_status.svg │ │ ├── complete_task.svg │ │ ├── complete_tsk.svg │ │ ├── confadd_ov.svg │ │ ├── confchg_ov.svg │ │ ├── confdel_ov.svg │ │ ├── copy_edit.svg │ │ ├── copy_l_co.svg │ │ ├── copy_r_co.svg │ │ ├── copycont_l_co.svg │ │ ├── copycont_r_co.svg │ │ ├── cprj_obj.svg │ │ ├── cut_edit.svg │ │ ├── debug_exc.svg │ │ ├── defaults_ps.svg │ │ ├── defaulttarget_obj.svg │ │ ├── delete_edit.svg │ │ ├── dirty_ov.svg │ │ ├── drop_invalid_source.svg │ │ ├── drop_rect_area.svg │ │ ├── drop_stack.svg │ │ ├── drop_vert_bar.svg │ │ ├── e_show_categories.svg │ │ ├── e_show_descriptions.svg │ │ ├── edited_ov.svg │ │ ├── equinox_secure_storage_pswd.svg │ │ ├── equinox_secure_storage_start.svg │ │ ├── error_log.png │ │ ├── error_log_details.png │ │ ├── error_obj.svg │ │ ├── et_builder_main_tab.png │ │ ├── et_dialog.png │ │ ├── et_dropdown.png │ │ ├── et_run_dropdown.png │ │ ├── et_standalone.png │ │ ├── export_wiz.svg │ │ ├── external_tools.svg │ │ ├── file_obj.svg │ │ ├── filter_internal_targets.svg │ │ ├── filter_ps.svg │ │ ├── find_actions.svg │ │ ├── first_anteditor.png │ │ ├── fldr_obj.svg │ │ ├── forward_nav.svg │ │ ├── gotoobj_tsk.svg │ │ ├── help.svg │ │ ├── help_scope_criteria.png │ │ ├── help_scope_link.png │ │ ├── help_scope_new.png │ │ ├── help_scope_select.png │ │ ├── help_search.svg │ │ ├── highlight.svg │ │ ├── home_nav.svg │ │ ├── ihigh_obj.svg │ │ ├── ilow_obj.svg │ │ ├── image57_two_editors.png │ │ ├── image92-opencheat.png │ │ ├── import_obj.svg │ │ ├── import_wiz.svg │ │ ├── info_obj.svg │ │ ├── jar_l_obj.svg │ │ ├── keys1.png │ │ ├── keys2.png │ │ ├── keys3.png │ │ ├── keys4.png │ │ ├── last_edit_pos.svg │ │ ├── linkto_help.svg │ │ ├── local_history_mode.svg │ │ ├── macrodef_obj.svg │ │ ├── main_tab.svg │ │ ├── mark_occurrences.svg │ │ ├── max.png │ │ ├── maximize.svg │ │ ├── merged_ov.svg │ │ ├── nav_print.svg │ │ ├── nav_stop.svg │ │ ├── new_persp.svg │ │ ├── new_wiz.svg │ │ ├── newfile_wiz.svg │ │ ├── newfolder_wiz.svg │ │ ├── newprj_wiz.svg │ │ ├── next_change_nav.svg │ │ ├── next_diff_nav.svg │ │ ├── next_nav.svg │ │ ├── next_nav2.svg │ │ ├── no_remotedir_ov.svg │ │ ├── openseparate_co.svg │ │ ├── outline_hello.png │ │ ├── paste_edit.svg │ │ ├── pin_editor.svg │ │ ├── prev_change_nav.svg │ │ ├── prev_diff_nav.svg │ │ ├── prev_nav.svg │ │ ├── print_edit.svg │ │ ├── prj_obj.svg │ │ ├── prop_ps.svg │ │ ├── property_obj.svg │ │ ├── question_ov.svg │ │ ├── quick-text-search.png │ │ ├── quickfix_error_obj.svg │ │ ├── quickfix_warning_obj.svg │ │ ├── r_inadd_ov.svg │ │ ├── r_inchg_ov.svg │ │ ├── r_indel_ov.svg │ │ ├── r_outadd_ov.svg │ │ ├── r_outchg_ov.svg │ │ ├── r_outdel_ov.svg │ │ ├── redo_edit.svg │ │ ├── ref-1.png │ │ ├── ref-2.png │ │ ├── ref-3.png │ │ ├── ref-4.png │ │ ├── ref-5.png │ │ ├── ref-7.png │ │ ├── refresh_nav.svg │ │ ├── refresh_tab.svg │ │ ├── remote_history_mode.svg │ │ ├── remove_co.svg │ │ ├── removeall_co.svg │ │ ├── restore.svg │ │ ├── return_to_start.svg │ │ ├── run_exc.svg │ │ ├── save_edit.svg │ │ ├── saveall_edit.svg │ │ ├── saveas_edit.svg │ │ ├── search.svg │ │ ├── search_src.svg │ │ ├── searchm_obj.svg │ │ ├── segment_edit.svg │ │ ├── show_key_bindings.png │ │ ├── show_whitespace_chars.svg │ │ ├── skip_status.svg │ │ ├── slocalhelp_obj.svg │ │ ├── start_ccs_task.svg │ │ ├── start_task.svg │ │ ├── sweb_obj.svg │ │ ├── switch_workspace.png │ │ ├── synced.svg │ │ ├── synch_participants.svg │ │ ├── synch_toc_nav.svg │ │ ├── targetinternal_obj.svg │ │ ├── targetpublic_obj.svg │ │ ├── task_obj.svg │ │ ├── tasks_tsk.svg │ │ ├── thin_min_view.svg │ │ ├── toc_closed.svg │ │ ├── toc_open.svg │ │ ├── toc_topic_obj.svg │ │ ├── topic_small.svg │ │ ├── tree_mode.svg │ │ ├── twowaycompare_co.svg │ │ ├── type.svg │ │ ├── undo_edit.svg │ │ ├── up_nav.svg │ │ ├── version_controlled.svg │ │ ├── view_menu.svg │ │ ├── warning_obj.svg │ │ └── win_only.svg │ │ ├── notices.html │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── reference │ │ ├── help_preferences.htm │ │ ├── help_preferences_content.htm │ │ ├── ref-10.htm │ │ ├── ref-11.htm │ │ ├── ref-12.htm │ │ ├── ref-13.htm │ │ ├── ref-14.htm │ │ ├── ref-14b.htm │ │ ├── ref-15.htm │ │ ├── ref-16.htm │ │ ├── ref-17.htm │ │ ├── ref-19.htm │ │ ├── ref-2.htm │ │ ├── ref-20-fileContent.htm │ │ ├── ref-20.htm │ │ ├── ref-20team-models.htm │ │ ├── ref-22.htm │ │ ├── ref-23.htm │ │ ├── ref-24.htm │ │ ├── ref-25.htm │ │ ├── ref-26.htm │ │ ├── ref-27.htm │ │ ├── ref-28.htm │ │ ├── ref-29.htm │ │ ├── ref-3.htm │ │ ├── ref-30.htm │ │ ├── ref-31.htm │ │ ├── ref-31a.htm │ │ ├── ref-35.htm │ │ ├── ref-36.htm │ │ ├── ref-37.htm │ │ ├── ref-38.htm │ │ ├── ref-39.htm │ │ ├── ref-4.htm │ │ ├── ref-42.htm │ │ ├── ref-43.htm │ │ ├── ref-45.htm │ │ ├── ref-48a.htm │ │ ├── ref-5.htm │ │ ├── ref-56.htm │ │ ├── ref-57.htm │ │ ├── ref-58.htm │ │ ├── ref-59.htm │ │ ├── ref-6.htm │ │ ├── ref-60.htm │ │ ├── ref-61.htm │ │ ├── ref-65.htm │ │ ├── ref-66.htm │ │ ├── ref-67.htm │ │ ├── ref-68.htm │ │ ├── ref-6a.htm │ │ ├── ref-7.htm │ │ ├── ref-70.htm │ │ ├── ref-71.htm │ │ ├── ref-72.htm │ │ ├── ref-8.htm │ │ ├── ref-9.htm │ │ ├── ref-antcontentassist.htm │ │ ├── ref-anteditor.htm │ │ ├── ref-anteditorprefs.htm │ │ ├── ref-antformatter.htm │ │ ├── ref-anticons.htm │ │ ├── ref-antprefs.htm │ │ ├── ref-antruntimeprefs.htm │ │ ├── ref-anttemplates.htm │ │ ├── ref-antview.htm │ │ ├── ref-capabilitiespref.htm │ │ ├── ref-cheatsheets.htm │ │ ├── ref-composite-cheatsheets.htm │ │ ├── ref-content-type.htm │ │ ├── ref-decorations.htm │ │ ├── ref-dialog-open-resource.htm │ │ ├── ref-error_log_view.htm │ │ ├── ref-exttoolsprefs.htm │ │ ├── ref-fonts.htm │ │ ├── ref-globalizationprefs.htm │ │ ├── ref-keybindings.htm │ │ ├── ref-large-file-associations.htm │ │ ├── ref-linkhandlersprefs.htm │ │ ├── ref-net-preferences.htm │ │ ├── ref-p2-autoupdate.htm │ │ ├── ref-p2-installupdate.htm │ │ ├── ref-p2-siteprefs.htm │ │ ├── ref-p2-trust-authority.htm │ │ ├── ref-p2-trust.htm │ │ ├── ref-regex-find-replace.htm │ │ ├── ref-search.htm │ │ ├── ref-securestorage-options.htm │ │ ├── ref-securestorage-passwd.htm │ │ ├── ref-securestorage-prefs.htm │ │ ├── ref-securestorage-recovery.htm │ │ ├── ref-securestorage-start.htm │ │ ├── ref-securestorage-works.htm │ │ ├── ref-ssh2-preferences.htm │ │ ├── ref-startup-workspaces.htm │ │ ├── ref-startup.htm │ │ ├── ref-templates-view.htm │ │ ├── ref-texteditorprefs.htm │ │ ├── ref-tracing_preference_page.htm │ │ ├── ref-uiresponsiveness_preference_page.htm │ │ ├── ref-workspaceswitch.htm │ │ └── welcome_preferences.htm │ │ ├── tasks │ │ ├── antRunner.htm │ │ ├── help.xhtml │ │ ├── help_accessibility.htm │ │ ├── help_context.htm │ │ ├── help_navigate.htm │ │ ├── help_scope.htm │ │ ├── help_search.htm │ │ ├── help_settings.htm │ │ ├── large-file-associations.htm │ │ ├── running_eclipse.htm │ │ ├── tasks-1.htm │ │ ├── tasks-100d.htm │ │ ├── tasks-100d1.htm │ │ ├── tasks-100d1b.htm │ │ ├── tasks-101.htm │ │ ├── tasks-103.htm │ │ ├── tasks-113b.htm │ │ ├── tasks-114.htm │ │ ├── tasks-115.htm │ │ ├── tasks-120.htm │ │ ├── tasks-122.htm │ │ ├── tasks-123.htm │ │ ├── tasks-124.htm │ │ ├── tasks-125.htm │ │ ├── tasks-126.htm │ │ ├── tasks-127.htm │ │ ├── tasks-128.htm │ │ ├── tasks-129.htm │ │ ├── tasks-130.htm │ │ ├── tasks-131.htm │ │ ├── tasks-132.htm │ │ ├── tasks-133.htm │ │ ├── tasks-134.htm │ │ ├── tasks-14.htm │ │ ├── tasks-16.htm │ │ ├── tasks-17.htm │ │ ├── tasks-18.htm │ │ ├── tasks-1a.htm │ │ ├── tasks-1b.htm │ │ ├── tasks-1c.htm │ │ ├── tasks-1d.htm │ │ ├── tasks-1e.htm │ │ ├── tasks-1f.htm │ │ ├── tasks-1h.htm │ │ ├── tasks-2.htm │ │ ├── tasks-20.htm │ │ ├── tasks-24.htm │ │ ├── tasks-28.htm │ │ ├── tasks-3.htm │ │ ├── tasks-31.htm │ │ ├── tasks-3e.htm │ │ ├── tasks-3g.htm │ │ ├── tasks-3h.htm │ │ ├── tasks-42.htm │ │ ├── tasks-42b.htm │ │ ├── tasks-43.htm │ │ ├── tasks-44.htm │ │ ├── tasks-45.htm │ │ ├── tasks-45a.htm │ │ ├── tasks-46.htm │ │ ├── tasks-46ag.htm │ │ ├── tasks-47.htm │ │ ├── tasks-48b.htm │ │ ├── tasks-49.htm │ │ ├── tasks-51.xhtml │ │ ├── tasks-52.htm │ │ ├── tasks-53.xhtml │ │ ├── tasks-55.htm │ │ ├── tasks-55bg.htm │ │ ├── tasks-57.xhtml │ │ ├── tasks-59.htm │ │ ├── tasks-59ag.htm │ │ ├── tasks-63.htm │ │ ├── tasks-63cg.htm │ │ ├── tasks-66.htm │ │ ├── tasks-67.htm │ │ ├── tasks-68.htm │ │ ├── tasks-68b.htm │ │ ├── tasks-68bg.htm │ │ ├── tasks-68c.htm │ │ ├── tasks-68dg.htm │ │ ├── tasks-70.htm │ │ ├── tasks-73.htm │ │ ├── tasks-75.htm │ │ ├── tasks-77.htm │ │ ├── tasks-77b.htm │ │ ├── tasks-78.htm │ │ ├── tasks-79.htm │ │ ├── tasks-81.htm │ │ ├── tasks-81b.htm │ │ ├── tasks-82.htm │ │ ├── tasks-84.htm │ │ ├── tasks-84b.htm │ │ ├── tasks-87.htm │ │ ├── tasks-87b.htm │ │ ├── tasks-88.htm │ │ ├── tasks-97.htm │ │ ├── tasks-9d.htm │ │ ├── tasks-9f.htm │ │ ├── tasks-9i.htm │ │ ├── tasks-9j.htm │ │ ├── tasks-9k.htm │ │ ├── tasks-9l.htm │ │ ├── tasks-9m.htm │ │ ├── tasks-9n.htm │ │ ├── tasks-ant-addtasksandtypes.htm │ │ ├── tasks-ant-classpath.htm │ │ ├── tasks-ant-running.htm │ │ ├── tasks-ant-version.htm │ │ ├── tasks-exttools-running.htm │ │ ├── tasks-importproject.htm │ │ ├── tasks-team-1.htm │ │ ├── timpandexp.htm │ │ ├── tkeybindings.htm │ │ ├── topenmode.htm │ │ ├── tquickfix.htm │ │ ├── ttoolbars.htm │ │ └── welcome.htm │ │ ├── tipOfTheDay │ │ ├── nan.json │ │ └── tips.json │ │ ├── tips │ │ ├── images │ │ │ ├── annotation-code-mining-jdt.png │ │ │ ├── annotations-preferences.png │ │ │ ├── autosave-preference-page.png │ │ │ ├── backward_nav.svg │ │ │ ├── breakpoints-sort-by.png │ │ │ ├── browser-autorefresh.png │ │ │ ├── cap-pref.png │ │ │ ├── collapse-all.png │ │ │ ├── compare-merge-button.png │ │ │ ├── compare-showancestor.png │ │ │ ├── copy-preferences-ws-switch.png │ │ │ ├── dark-theme-preference.png │ │ │ ├── dark-themed-ide.png │ │ │ ├── dark_theme_square_tabs.png │ │ │ ├── detachview2.png │ │ │ ├── editor-tiles.png │ │ │ ├── fastview-drag.png │ │ │ ├── help_bookmarks_1.svg │ │ │ ├── help_bookmarks_2.svg │ │ │ ├── help_external_window.svg │ │ │ ├── help_show_topic.svg │ │ │ ├── key-assist.png │ │ │ ├── key-bindings.png │ │ │ ├── keyboard-shortcut.png │ │ │ ├── keycompletions.png │ │ │ ├── last_edit_pos.svg │ │ │ ├── launch-groups.png │ │ │ ├── launch-preference-history-relaunch.png │ │ │ ├── line-delimiter.png │ │ │ ├── link-with-editor.png │ │ │ ├── mini-view.png │ │ │ ├── new.png │ │ │ ├── overlay-options.png │ │ │ ├── path-vars.png │ │ │ ├── pb-context-menu.png │ │ │ ├── perspective-other.png │ │ │ ├── pin-editor.png │ │ │ ├── preference-import-export.png │ │ │ ├── preference-transfer-compiler.png │ │ │ ├── process_properties.png │ │ │ ├── props-view.png │ │ │ ├── quick-access-dialog.png │ │ │ ├── quick-access-hide.png │ │ │ ├── quickaccess.png │ │ │ ├── quickdiff-hover.png │ │ │ ├── res_build.png │ │ │ ├── restore-local.png │ │ │ ├── right-click-export-launch-config.png │ │ │ ├── separate_derived_encodings.png │ │ │ ├── show-in.png │ │ │ ├── show_pid.png │ │ │ ├── shown-in-system-explorer.png │ │ │ └── team-project-set.png │ │ └── platform_tips.html │ │ ├── toc.xml │ │ ├── topics_Concepts.xml │ │ ├── topics_GettingStarted.xml │ │ ├── topics_Reference.xml │ │ ├── topics_Tasks.xml │ │ ├── topics_Tips.xml │ │ ├── topics_WhatsNew.xml │ │ └── whatsNew │ │ ├── images │ │ ├── code_minig_color.png │ │ ├── editor_tabs_at_bottom.png │ │ ├── editor_tabs_at_top.png │ │ ├── filterByCategory.png │ │ ├── hidpi-setting-preference.png │ │ ├── keybindings_after.png │ │ ├── keybindings_before.png │ │ ├── multiline-regex-improvement.png │ │ ├── preference_tabs_at_bottom.png │ │ ├── preference_tabs_at_top.png │ │ ├── regex-improvement-decoration.png │ │ ├── rescaling_disabled.png │ │ ├── rescaling_enabled.png │ │ └── rescaling_setting-preference.png │ │ └── platform_whatsnew.html └── pom.xml ├── eclipse.platform.releng.prereqs.sdk ├── .gitignore ├── .project ├── eclipse-sdk-prereqs.target ├── pom.xml └── update-rules.xml ├── eclipse.platform.releng.tychoeclipsebuilder ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.core.runtime.prefs ├── eclipse-junit-tests │ ├── eclipse-junit-tests.product │ ├── pom.xml │ └── src │ │ └── main │ │ ├── assembly │ │ └── assembly.xml │ │ ├── resources │ │ ├── equinoxp2tests.properties │ │ └── label.properties │ │ └── scripts │ │ ├── JUNIT.XSL │ │ ├── getPreviousRelease.sh │ │ └── library.xml ├── eclipse.platform.repository │ ├── category.xml │ ├── cp-content.xsl │ ├── icons │ │ ├── Eclipse.icns │ │ ├── eclipse.ico │ │ ├── icon.xpm │ │ └── solaris │ │ │ ├── Eclipse.l.pm │ │ │ ├── Eclipse.m.pm │ │ │ ├── Eclipse.s.pm │ │ │ └── Eclipse.t.pm │ ├── platform.p2.inf │ ├── platform.product │ ├── pom.xml │ ├── sdk.p2.inf │ └── sdk.product ├── eclipse │ ├── apiexclude │ │ └── exclude_list_external.txt │ ├── buildScripts │ │ ├── api-tools-builder.xml │ │ ├── eclipse_compare.xml │ │ ├── eclipse_convert.xml │ │ └── process-artifacts.xml │ ├── extras │ │ └── produceChecksum.sh │ ├── helper.xml │ └── publishingFiles │ │ ├── staticDropFiles │ │ ├── DL.thin.header.php.html │ │ ├── FAIL.gif │ │ ├── FAIL_ORIG.gif │ │ ├── NONE-FAIL.gif │ │ ├── NONE-OK.gif │ │ ├── OK.gif │ │ ├── OK_ORIG.gif │ │ ├── buildlogs.php │ │ ├── compilerSummaryPending.html │ │ ├── computeRepoURLs.php │ │ ├── details.html │ │ ├── download.php │ │ ├── dropSectionUtils.php │ │ ├── eclipseDownloadPage.css │ │ ├── eclipseDownloadPage.js │ │ ├── gitLog.php │ │ ├── gitLogSection.css │ │ ├── images │ │ │ ├── light.gif │ │ │ └── more.gif │ │ ├── logPhpUtils.php │ │ ├── logs.php │ │ ├── new.gif │ │ ├── repo.gif │ │ ├── resultsSection.css │ │ ├── testResults.php │ │ ├── testResultsTablesPending.html │ │ └── utilityFunctions.php │ │ ├── templateFiles │ │ ├── buildproperties.phpHoldForLocalTests │ │ ├── index.template.php │ │ └── testNotesExample.html │ │ └── testManifest.xml ├── entitlement │ ├── equinox.entitlement │ ├── platform.entitlement │ └── sdk.entitlement ├── equinox-sdk │ ├── equinox-sdk.product │ ├── forceQualifierUpdate.txt │ └── pom.xml ├── equinox.starterkit.product │ ├── EclipseRTOSGiStarterKit.p2.inf │ ├── EclipseRTOSGiStarterKit.product │ ├── icon.xpm │ ├── pom.xml │ ├── rt.icns │ └── rt.ico ├── equinox │ ├── buildConfigs │ │ └── equinox-launchers │ │ │ └── build.xml │ ├── helper.xml │ └── publishingFiles │ │ ├── staticDropFiles │ │ ├── build.php │ │ ├── download.php │ │ └── equinox.css │ │ ├── templateFiles │ │ ├── index.template.php │ │ └── testResults.template.php │ │ └── testManifest.xml ├── forceQualifierUpdate.txt ├── pom.xml └── repos │ ├── .gitignore │ ├── build.xml │ ├── buildAll.xml │ └── platformrepo.xml ├── eclipse.platform.releng ├── bundles │ ├── build.properties │ ├── org.eclipse.ant.optional.junit │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── forceQualifierUpdate.txt │ │ └── plugin.properties │ ├── org.eclipse.rcp │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── about.ini │ │ ├── about.mappings │ │ ├── about.properties │ │ ├── build.properties │ │ ├── eclipse32.png │ │ ├── forceQualifierUpdate.txt │ │ └── plugin.properties │ ├── org.eclipse.releng.tests │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ └── org.eclipse.wst.xml.core.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── compare.properties │ │ ├── compareoptions.properties │ │ ├── forceQualifierUpdate.txt │ │ ├── ignoreErrorsUnix.txt │ │ ├── ignoreErrorsWindows.txt │ │ ├── ignoreFiles.txt │ │ ├── miscTests.jpage │ │ ├── plugin.properties │ │ ├── src │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── releng │ │ │ │ └── tests │ │ │ │ ├── BuildTests.java │ │ │ │ └── checkSignature │ │ └── test.xml │ ├── org.eclipse.sdk.examples │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── about.ini │ │ ├── about.mappings │ │ ├── about.properties │ │ ├── build.properties │ │ ├── eclipse32.png │ │ ├── forceQualifierUpdate.txt │ │ └── plugin.properties │ ├── org.eclipse.sdk.tests │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── about.ini │ │ ├── about.mappings │ │ ├── about.properties │ │ ├── build.properties │ │ ├── eclipse32.png │ │ ├── forceQualifierUpdate.txt │ │ └── plugin.properties │ ├── org.eclipse.test.performance.win32 │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── forceQualifierUpdate.txt │ │ ├── os │ │ │ └── win32 │ │ │ │ └── x86_64 │ │ │ │ └── ivjperf.dll │ │ ├── plugin.properties │ │ ├── pom.xml │ │ └── src │ │ │ ├── build.bat │ │ │ ├── ivjperf.c │ │ │ ├── ivjperf.h │ │ │ └── resource.h │ ├── org.eclipse.test.performance │ │ ├── .classpath │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ ├── org.eclipse.core.runtime.prefs │ │ │ ├── org.eclipse.jdt.core.prefs │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── forceQualifierUpdate.txt │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ ├── scripts │ │ │ └── exportplugin.xml │ │ └── src │ │ │ └── org │ │ │ └── eclipse │ │ │ ├── perfmsr │ │ │ └── core │ │ │ │ └── PerformanceMonitor.java │ │ │ └── test │ │ │ ├── internal │ │ │ └── performance │ │ │ │ ├── InternalDimensions.java │ │ │ │ ├── InternalPerformanceMeter.java │ │ │ │ ├── NullPerformanceMeter.java │ │ │ │ ├── OSPerformanceMeter.java │ │ │ │ ├── OSPerformanceMeterFactory.java │ │ │ │ ├── PerformanceMeterFactory.java │ │ │ │ ├── PerformanceMonitor.java │ │ │ │ ├── PerformanceMonitorLinux.java │ │ │ │ ├── PerformanceMonitorMac.java │ │ │ │ ├── PerformanceMonitorWindows.java │ │ │ │ ├── PerformanceTestPlugin.java │ │ │ │ ├── SystemTimePerformanceMeter.java │ │ │ │ ├── SystemTimePerformanceMeterFactory.java │ │ │ │ ├── data │ │ │ │ ├── DataPoint.java │ │ │ │ ├── Dim.java │ │ │ │ ├── DimensionMessages.java │ │ │ │ ├── DimensionMessages.properties │ │ │ │ ├── ResultsData.java │ │ │ │ ├── Sample.java │ │ │ │ ├── Scalar.java │ │ │ │ └── Unit.java │ │ │ │ ├── db │ │ │ │ ├── Report.java │ │ │ │ ├── SQL.java │ │ │ │ ├── SummaryEntry.java │ │ │ │ ├── TimeSeries.java │ │ │ │ └── Variations.java │ │ │ │ ├── eval │ │ │ │ ├── AbsoluteBandChecker.java │ │ │ │ ├── AssertChecker.java │ │ │ │ ├── EmptyEvaluator.java │ │ │ │ ├── Evaluator.java │ │ │ │ ├── IEvaluator.java │ │ │ │ ├── RelativeBandChecker.java │ │ │ │ ├── StatisticsSession.java │ │ │ │ └── StatisticsUtil.java │ │ │ │ └── tests │ │ │ │ ├── AllTests.java │ │ │ │ ├── PerformanceMeterFactoryTest.java │ │ │ │ ├── SimplePerformanceMeterTest.java │ │ │ │ ├── TestPerformanceMeter.java │ │ │ │ └── VariationsTests.java │ │ │ └── performance │ │ │ ├── AbstractPerformanceTestCase.java │ │ │ ├── BasicResultsTable.java │ │ │ ├── Dimension.java │ │ │ ├── Performance.java │ │ │ ├── PerformanceMeter.java │ │ │ ├── PerformanceTestCase.java │ │ │ ├── PerformanceTestCaseJunit4.java │ │ │ └── PerformanceTestCaseJunit5.java │ └── org.eclipse.test │ │ ├── .classpath │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.prefs │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── about.html │ │ ├── build.properties │ │ ├── forceQualifierUpdate.txt │ │ ├── plugin.properties │ │ ├── plugin.xml │ │ └── src │ │ └── org │ │ └── eclipse │ │ └── test │ │ ├── AbstractJUnitResultFormatter.java │ │ ├── AwtScreenshot.java │ │ ├── ClassLoaderTools.java │ │ ├── CoreTestApplication.java │ │ ├── EclipseTestRunner.java │ │ ├── LegacyXmlResultFormatter.java │ │ ├── OrderedTestSuite.java │ │ ├── RegressionTest.java │ │ ├── Screenshots.java │ │ ├── TracingSuite.java │ │ └── UITestApplication.java ├── features │ ├── build.properties │ ├── org.eclipse.help-feature │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── forceQualifierUpdate.txt │ ├── org.eclipse.platform-feature │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ ├── forceQualifierUpdate.txt │ │ ├── pom.xml │ │ └── rootfiles │ │ │ └── .eclipseproduct │ ├── org.eclipse.rcp │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ ├── forceQualifierUpdate.txt │ │ └── rootfiles │ │ │ └── readme │ │ │ └── readme_eclipse.html │ ├── org.eclipse.sdk.examples-feature │ │ ├── .gitignore │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ ├── forceQualifierUpdate.txt │ │ └── rootfiles │ │ │ └── .eclipseextension │ ├── org.eclipse.sdk.tests │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── forceQualifierUpdate.txt │ ├── org.eclipse.sdk │ │ ├── .project │ │ ├── .settings │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ └── org.eclipse.core.runtime.prefs │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ ├── forceQualifierUpdate.txt │ │ └── p2.inf │ └── org.eclipse.test-feature │ │ ├── .project │ │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.core.runtime.prefs │ │ ├── build.properties │ │ ├── feature.properties │ │ ├── feature.xml │ │ └── forceQualifierUpdate.txt ├── pom.xml └── publish-to-maven-central │ ├── .project │ ├── .settings │ └── org.eclipse.core.resources.prefs │ ├── SDK4Mvn.aggr │ └── SDK4Mvn.aggran ├── oomph ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.core.runtime.prefs ├── Platform.setup └── PlatformSDKConfiguration.setup ├── pom.xml ├── production └── testScripts │ ├── bootstrap │ └── getEBuilder.xml │ ├── configuration │ ├── sdk.tests │ │ ├── testConfigs │ │ │ ├── linux │ │ │ │ └── platformSpecific.properties │ │ │ ├── macosx │ │ │ │ └── platformSpecific.properties │ │ │ └── windows │ │ │ │ └── platformSpecific.properties │ │ └── testScripts │ │ │ ├── .gitignore │ │ │ ├── runtests.bat │ │ │ ├── runtests.sh │ │ │ ├── runtestsmac.sh │ │ │ └── test.xml │ └── streamSpecific.properties │ └── runTests2.xml └── scripts ├── GAReleasePrep.sh ├── declareMilestone.sh ├── newReleasePrep.sh ├── updateProductVersion.sh └── verifyFreezePeriod.sh /.mvn/extensions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | org.eclipse.tycho 6 | tycho-build 7 | 4.0.13 8 | 9 | -------------------------------------------------------------------------------- /.mvn/jvm.config: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- 1 | -DaggregatorBuild=true 2 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/testResults.php=UTF-8 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- 1 | # Contributing to Eclipse Platform 2 | See https://github.com/eclipse-platform/.github/blob/main/CONTRIBUTING.md 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to Eclipse Platform 2 | See https://github.com/eclipse-platform/.github/blob/main/CONTRIBUTING.md 3 | -------------------------------------------------------------------------------- /JenkinsJobs/AutomatedTests/FOLDER.groovy: -------------------------------------------------------------------------------- 1 | folder('AutomatedTests') { 2 | displayName('Automated Tests') 3 | description('Folder for Unit Tests') 4 | } -------------------------------------------------------------------------------- /JenkinsJobs/Cleanup/FOLDER.groovy: -------------------------------------------------------------------------------- 1 | folder('Cleanup') { 2 | description('Cleanup Scripts.') 3 | } 4 | -------------------------------------------------------------------------------- /JenkinsJobs/JobDSL.json: -------------------------------------------------------------------------------- 1 | { 2 | "Streams": [ 3 | "4.37" 4 | ], 5 | "Branches": { 6 | "4.37": "master" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /cje-production/dockerfiles/centos-gtk4-mutter/9-gtk4/scripts/uid_entrypoint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | if ! whoami > /dev/null 2>&1; then 3 | if [ -w /etc/passwd ]; then 4 | echo "${USER_NAME:-default}:x:$(id -u):0:${USER_NAME:-default} user:${HOME}:/sbin/nologin" >> /etc/passwd 5 | fi 6 | fi 7 | exec "$@" -------------------------------------------------------------------------------- /cje-production/dockerfiles/debian/swtgtk3nativebuild/scripts/uid_entrypoint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | if ! whoami > /dev/null 2>&1; then 3 | if [ -w /etc/passwd ]; then 4 | echo "${USER_NAME:-default}:x:$(id -u):0:${USER_NAME:-default} user:${HOME}:/sbin/nologin" >> /etc/passwd 5 | fi 6 | fi 7 | exec "$@" 8 | -------------------------------------------------------------------------------- /cje-production/dockerfiles/debian/swtnativebuild/scripts/uid_entrypoint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | if ! whoami > /dev/null 2>&1; then 3 | if [ -w /etc/passwd ]; then 4 | echo "${USER_NAME:-default}:x:$(id -u):0:${USER_NAME:-default} user:${HOME}:/sbin/nologin" >> /etc/passwd 5 | fi 6 | fi 7 | exec "$@" 8 | -------------------------------------------------------------------------------- /cje-production/dockerfiles/opensuse-gtk3-metacity/15-gtk3/scripts/uid_entrypoint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | if ! whoami > /dev/null 2>&1; then 3 | if [ -w /etc/passwd ]; then 4 | echo "${USER_NAME:-default}:x:$(id -u):0:${USER_NAME:-default} user:${HOME}:/sbin/nologin" >> /etc/passwd 5 | fi 6 | fi 7 | exec "$@" -------------------------------------------------------------------------------- /cje-production/gitCache/readme.txt: -------------------------------------------------------------------------------- 1 | Holds the git cache and maven build runs from here 2 | -------------------------------------------------------------------------------- /cje-production/siteDir/readme.txt: -------------------------------------------------------------------------------- 1 | Holds the site directory structure 2 | -------------------------------------------------------------------------------- /cje-production/streams/description.txt: -------------------------------------------------------------------------------- 1 | The files in this directory are stream specific and used in conjunction with 2 | the production scripts. -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/cpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/cpy.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/annotation_processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/annotation_processing.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/compiler_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/compiler_dialog.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/factory_path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/factory_path.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/javanavigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/javanavigator.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/openables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/openables.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/sourceelements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/guide/images/sourceelements.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.isv/reference/.gitignore: -------------------------------------------------------------------------------- 1 | /api/ 2 | /extension-points/*.html 3 | /extension-points/*.exsd 4 | !/extension-points/index.html 5 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding//reference/propertypages/ref-properties-buildpath-modularity.htm=ISO-8859-1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/concepts/images/qs-37a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/concepts/images/qs-37a.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/cpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/cpy.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/debug_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/debug_button.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/editor_testcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/editor_testcase.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/editor_vectortest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/editor_vectortest.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/j2se50/autobox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/j2se50/autobox.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/j2se50/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/j2se50/enum.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/j2se50/quick-fix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/j2se50/quick-fix.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/assign-vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/assign-vars.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/ee-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/ee-page.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/select-ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/select-ee.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/twr-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/twr-example.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/twr-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/java7/twr-warning.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/move_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/move_dialog.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/navigate_opentype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/navigate_opentype.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/open_run_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/open_run_dialog.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_buildpath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_buildpath.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_compiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_compiler.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_editor.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_jre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_jre.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/pref_workspace.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/quickoutline_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/quickoutline_menu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/quicktype_dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/quicktype_dialogs.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/rename_cu_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/rename_cu_dialog.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/run_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/run_dialog.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/run_dialog_junit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/run_dialog_junit.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/run_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/run_dropdown.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/select_how.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/select_how.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/view_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/view_debug.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/view_junit_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/view_junit_red.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/wiz_new_scrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/wiz_new_scrap.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/wiz_new_suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/gettingStarted/images/wiz_new_suite.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/reference/images/c-quickfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/reference/images/c-quickfix.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/reference/images/contentassist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/reference/images/contentassist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/reference/images/quickfix-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/reference/images/quickfix-hover.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/reference/images/ref-breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/reference/images/ref-breadcrumb.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-add_jre_ee_file.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-add_jre_ee_file.PNG -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-add_jre_std_vm.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-add_jre_std_vm.PNG -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-add-monitor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-add-monitor.gif -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-det-pane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-det-pane.gif -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-link-panes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-link-panes.gif -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-new.gif -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-pin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/task-memory-pin.gif -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/tasks-199a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/tasks-199a.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/tasks-46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/tasks-46.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/tasks_200a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/tasks_200a.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/tasks_201a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tasks/images/tasks_201a.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/DeclarationView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/DeclarationView.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/advanced-highlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/advanced-highlighting.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/annotate-map-return.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/annotate-map-return.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/annotation-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/annotation-navigation.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/breadcrumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/breadcrumb.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/build-path-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/build-path-actions.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/call_hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/call_hierarchy.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-3.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-5.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-6.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/camel-case-nav-7.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/cleanupprofiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/cleanupprofiles.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-anonym1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-anonym1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-anonym2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-anonym2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-fieldname.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-fieldname.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-javadoc2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-javadoc2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-newmethod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-newmethod.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-with-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist-with-import.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-assist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/code-templates.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/codeassist-getter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/codeassist-getter.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/colored-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/colored-labels.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/compare-java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/compare-java.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/compare-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/compare-properties.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/completiononcamelcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/completiononcamelcase.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/compress-packages1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/compress-packages1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/compress-packages2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/compress-packages2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/content-assist-proposals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/content-assist-proposals.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/convert-to-lambda-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/convert-to-lambda-1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/convert-to-lambda-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/convert-to-lambda-2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/convert-to-lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/convert-to-lambda.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/create-getter-setter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/create-getter-setter.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/create-hashcode-equals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/create-hashcode-equals.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/delegate-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/delegate-method.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/editor-code-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/editor-code-hover.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/editor-link-style-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/editor-link-style-open.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/enable-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/enable-preview.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/enclosing-brackets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/enclosing-brackets.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/extract_local_to_var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/extract_local_to_var.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/file-associations-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/file-associations-page.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/folding-preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/folding-preferences.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/gettersetter-quickassist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/gettersetter-quickassist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/group-problems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/group-problems.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/hierarchy-lockview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/hierarchy-lockview.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/hover-on-lambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/hover-on-lambda.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/hover-on-var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/hover-on-var.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/hovergenericsignature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/hovergenericsignature.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/inplace_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/inplace_outline.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/instanceof-always-false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/instanceof-always-false.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/is-modular-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/is-modular-configuration.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/java9-create-module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/java9-create-module.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/java_stack_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/java_stack_console.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-hover.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-location.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-prefs.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-quickfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-quickfix.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/javadoc-view.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/jdt_sort_library_pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/jdt_sort_library_pref.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/lambda_entry_breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/lambda_entry_breakpoint.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/link-with-editor-in-occs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/link-with-editor-in-occs.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/localhistory-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/localhistory-replace.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/localhistory-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/localhistory-restore.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/mark-occurrences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/mark-occurrences.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/matching-brackets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/matching-brackets.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/name-conventions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/name-conventions.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/navigate-to-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/navigate-to-switch.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/new-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/new-class.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/new-project-with-ee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/new-project-with-ee.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/new.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/nls-problem-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/nls-problem-search.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/null-reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/null-reference.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/open-declaration-on-var.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/open-declaration-on-var.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/open-type-camel-case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/open-type-camel-case.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/organize-imports-on-save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/organize-imports-on-save.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/override-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/override-method.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/package-abbreviations-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/package-abbreviations-on.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/package-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/package-explorer.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/packages-compound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/packages-compound.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/packages-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/packages-flat.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/packages-hierarchical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/packages-hierarchical.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/parameter-hints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/parameter-hints.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/postfix-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/postfix-templates.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/potential-null-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/potential-null-ref.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/project-specific-jre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/project-specific-jre.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-assist-shortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-assist-shortcuts.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-fix-create-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-fix-create-method.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-fix-localrename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-fix-localrename.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-outline-inherited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-outline-inherited.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-refactoring-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quick-refactoring-menu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quickfix-addcast1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quickfix-addcast1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quickfix-addcast2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quickfix-addcast2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quickfix-addcast3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quickfix-addcast3.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quickfix-create-for-loop-array.txt: -------------------------------------------------------------------------------- 1 | void foo(int[] offsets) { 2 | offsets 3 | } -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/quickfix-create-for-loop-collection.txt: -------------------------------------------------------------------------------- 1 | void foo(Map map) { 2 | map.keySet() 3 | } -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/redundant-null-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/redundant-null-check.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/rename-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/rename-options.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/rich-problem-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/rich-problem-hover.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/search-returntype.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/search-returntype.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/show_command_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/show_command_line.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/smart-javadoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/smart-javadoc.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/sort-by-def.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/sort-by-def.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/step-show-methodresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/step-show-methodresult.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/subword-code-completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/subword-code-completion.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/suppresswarningsR31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/suppresswarningsR31.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/surroundwith.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/surroundwith.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/swt-templates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/swt-templates.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/template-for-iter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/template-for-iter.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/templates-create-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/templates-create-method.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/todo-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/todo-example.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/toggle-trace-point-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/toggle-trace-point-run.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/type-access-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/type-access-rules.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/type-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/type-filter.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/type-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/type-indicator.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/typing-preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/typing-preferences.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-i.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-opt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-opt.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-x.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-x2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-y.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-y2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-deprecation-y2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-privates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/warn-privates.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/working-set-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/tips/images/working-set-selection.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/.DS_Store -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/compareObjects_Menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/compareObjects_Menu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/exceptionObjects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/exceptionObjects.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/exceptionObjects2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/exceptionObjects2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/ifelseboolean-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/ifelseboolean-after.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/ifelseboolean-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/ifelseboolean-before.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/markdown_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/markdown_hover.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/markdown_javadoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/markdown_javadoc.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/new_folding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/new_folding.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-after.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-before.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-circle.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-crescent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-crescent.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-shape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/sealed-shape.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/settings_folding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/settings_folding.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/show-all-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.doc.user/whatsNew/images/show-all-code.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.tips.user/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.tips.user/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.jdt.tips.user/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.jdt.tips.user/src/org/eclipse/jdt/tips/user/internal/messages.properties: -------------------------------------------------------------------------------- 1 | JDTTipProvider_1=Fetching content.. 2 | JDTTipProvider_2=Could not get local URL 3 | JDTTipProvider_3=Could not load new Tips 4 | JDTTipProvider_5=Statelocation {0} not accessible. 5 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/about.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/actionsets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/actionsets.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/basicIntro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/basicIntro.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/browserexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/browserexample.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/cheatsheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/cheatsheets.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/common_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/common_tab.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/contributions_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/contributions_popup.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/cvsdecorators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/cvsdecorators.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editorAction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editorAction.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editorInputLabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editorInputLabel.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editormenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editormenu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editorretargets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editorretargets.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editortoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/editortoolbar.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/efs-newProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/efs-newProject.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/emptyworkbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/emptyworkbench.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/exportwizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/exportwizard.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/filetypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/filetypes.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/filtersmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/filtersmenu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/filtersselection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/filtersselection.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/firstpluginpde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/firstpluginpde.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/genericoutliner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/genericoutliner.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/help_contents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/help_contents.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/helpplaceholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/helpplaceholder.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/ignore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/ignore.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/importwizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/importwizard.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/infopops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/infopops.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javacheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javacheatsheet.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javacontentassist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javacontentassist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javacontentoutline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javacontentoutline.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javacontextassist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javacontextassist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javaeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javaeditor.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javaeditorsquiggly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javaeditorsquiggly.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javarulerhover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javarulerhover.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javatexthover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/javatexthover.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/keybindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/keybindings.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/launch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/launch.jpg -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/launchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/launchImage.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/lcd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/lcd.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/markerquickfixmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/markerquickfixmenu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/markerresolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/markerresolution.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/navigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/navigator.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/newwizardlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/newwizardlist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/newwizardmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/newwizardmenu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/no_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/no_category.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/p2allbundles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/p2allbundles.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/p2cloudinstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/p2cloudinstall.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/p2forcedupdate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/p2forcedupdate.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/p2reuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/p2reuse.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/perspectivemenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/perspectivemenu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/prbfil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/prbfil.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/preferences.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/prob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/prob.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/problemsview_groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/problemsview_groups.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/projectset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/projectset.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/quickfix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/quickfix.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeactionset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeactionset.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeactionsetmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeactionsetmenu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmedialog.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmemarkerhelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmemarkerhelp.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmemarkermenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmemarkermenu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeoutliner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeoutliner.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeoutlinerpopup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeoutlinerpopup.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeoverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeoverview.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmepopupmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmepopupmenu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmepreferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmepreferences.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeproperties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeproperties.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmetrim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmetrim.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmetrimxml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmetrimxml.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeview.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeviewaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeviewaction.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeviewcommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmeviewcommand.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmewizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/readmewizard.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/sample.gif -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/showview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/showview.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/singleclick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/singleclick.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/teamdecorators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/teamdecorators.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/teamintegration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/teamintegration.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/teamprefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/teamprefs.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/texteditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/texteditor.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/textencoding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/textencoding.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workbench.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workbenchdecorators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workbenchdecorators.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workbenchwithhello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workbenchwithhello.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workingSetTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workingSetTypes.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workingset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/images/workingset.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/reference/.gitignore: -------------------------------------------------------------------------------- 1 | /api/ 2 | /extension-points/*.html 3 | /extension-points/*.exsd 4 | !/extension-points/index.html 5 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/reference/misc/bidi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/reference/misc/bidi.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/workbench.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.tips/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.tips/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.tips/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.tips/icons/48/tips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.tips/icons/48/tips.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.tips/src/org/eclipse/platform/doc/tips/messages.properties: -------------------------------------------------------------------------------- 1 | HtmlExtractor_0=BrowserTips - Parsing lists 2 | HtmlTableProvider_0=Eclipse Platform Tips 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image11_new_wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image11_new_wizard.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image13_project_in_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image13_project_in_nav.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image15_project_depend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image15_project_depend.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image16_new_pulldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image16_new_pulldown.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image17b_unsaved_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image17b_unsaved_changes.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image19_close_on_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image19_close_on_tab.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image206_persp_saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image206_persp_saveas.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image207_persp_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image207_persp_sel.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image208_view_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image208_view_sel.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image210_filefilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image210_filefilter.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image211_perspective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image211_perspective.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image214_toobar_rsrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image214_toobar_rsrc.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image215_toolbar_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image215_toolbar_view.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image216_history_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image216_history_view.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image221_pref_fe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image221_pref_fe.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image229_editor_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image229_editor_popup.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image229_view_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image229_view_popup.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image230_editor_area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image230_editor_area.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image231_marker_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image231_marker_bar.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image232_marker_context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image232_marker_context.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image242_repo_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image242_repo_view.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image244_bmark_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image244_bmark_view.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image245_sync_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image245_sync_view.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image249_repo_wiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image249_repo_wiz.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image258_perps_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image258_perps_custom.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image261_import_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image261_import_sel.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image262_import_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image262_import_file.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image263_import_cvs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image263_import_cvs.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image263_import_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image263_import_zip.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image264_export_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image264_export_sel.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image265_export_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image265_export_file.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image265_team_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image265_team_project.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image266_export_ant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image266_export_ant.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image266_export_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image266_export_zip.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image268_export_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image268_export_team.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image269_merge_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image269_merge_init.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image273_local_hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image273_local_hist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image276_user_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image276_user_filters.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image30_goto_resource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image30_goto_resource.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image38_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image38_import.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image39_import_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image39_import_tree.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image3_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image3_single.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image3_tabbed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image3_tabbed.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image40_import_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image40_import_target.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image42_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image42_export.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image43_export_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image43_export_tree.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image48_move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image48_move.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image48_rename_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image48_rename_done.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image49_3_way_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image49_3_way_compare.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image55_reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image55_reset.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image5_text_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image5_text_editor.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image602_tar_assist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image602_tar_assist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image616_et_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image616_et_dropdown.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image619_ole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image619_ole.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image70_select_pers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image70_select_pers.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image70_shortcut4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image70_shortcut4.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image7_view_pulldown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image7_view_pulldown.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image80_compare_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image80_compare_editor.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image80_compare_editor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image80_compare_editor2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_nav.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_new.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_new3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_new3.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_sync1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_sync1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_sync2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_sync2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_team.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_view1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image82_repo_view1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_fred_verson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_fred_verson.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_fred_verson2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_fred_verson2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane-history.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane-sync.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane3_conflict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane3_conflict.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane3_conflict2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image83_jane3_conflict2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image84_replace2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image84_replace2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image84_replace3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image84_replace3.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image8_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image8_view.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image90_locked_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image90_locked_toolbar.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image90_unlocked_toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image90_unlocked_toolbar.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image_file_operation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image_file_operation.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image_pref_inup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/Image_pref_inup.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_builder_main_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_builder_main_tab.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_builder_refresh_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_builder_refresh_tab.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_builder_targets_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_builder_targets_tab.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_classpath_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_classpath_tab.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_run_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_run_dialog.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_tar_assist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ant_tar_assist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/builder_property_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/builder_property_page.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/compare-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/compare-editor.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/complete_status.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/drop_vert_bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/error_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/error_log.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/error_log_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/error_log_details.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_builder_main_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_builder_main_tab.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_dialog.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_dropdown.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_run_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_run_dropdown.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_standalone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/et_standalone.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/first_anteditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/first_anteditor.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/help_scope_criteria.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/help_scope_criteria.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/help_scope_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/help_scope_link.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/help_scope_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/help_scope_new.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/help_scope_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/help_scope_select.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/image57_two_editors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/image57_two_editors.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/image92-opencheat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/image92-opencheat.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/keys1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/keys1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/keys2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/keys2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/keys3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/keys3.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/keys4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/keys4.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/max.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/outline_hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/outline_hello.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/quick-text-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/quick-text-search.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-1.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-3.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-4.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-5.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/ref-7.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/show_key_bindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/show_key_bindings.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/switch_workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/switch_workspace.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/images/thin_min_view.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/breakpoints-sort-by.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/breakpoints-sort-by.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/browser-autorefresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/browser-autorefresh.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/cap-pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/cap-pref.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/collapse-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/collapse-all.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/dark-themed-ide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/dark-themed-ide.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/detachview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/detachview2.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/editor-tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/editor-tiles.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/fastview-drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/fastview-drag.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/key-assist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/key-assist.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/key-bindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/key-bindings.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/keyboard-shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/keyboard-shortcut.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/keycompletions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/keycompletions.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/launch-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/launch-groups.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/line-delimiter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/line-delimiter.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/link-with-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/link-with-editor.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/mini-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/mini-view.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/new.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/overlay-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/overlay-options.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/path-vars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/path-vars.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/pb-context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/pb-context-menu.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/perspective-other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/perspective-other.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/pin-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/pin-editor.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/process_properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/process_properties.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/props-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/props-view.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/quick-access-dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/quick-access-dialog.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/quick-access-hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/quick-access-hide.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/quickaccess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/quickaccess.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/quickdiff-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/quickdiff-hover.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/res_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/res_build.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/restore-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/restore-local.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/show-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/show-in.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/show_pid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/show_pid.png -------------------------------------------------------------------------------- /eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/team-project-set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.common/bundles/org.eclipse.platform.doc.user/tips/images/team-project-set.png -------------------------------------------------------------------------------- /eclipse.platform.releng.prereqs.sdk/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /.settings 3 | /.classpath 4 | /workspace -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse.platform.repository/icons/Eclipse.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse.platform.repository/icons/Eclipse.icns -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse.platform.repository/icons/eclipse.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse.platform.repository/icons/eclipse.ico -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/FAIL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/FAIL.gif -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/FAIL_ORIG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/FAIL_ORIG.gif -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/NONE-FAIL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/NONE-FAIL.gif -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/NONE-OK.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/NONE-OK.gif -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/OK.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/OK.gif -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/OK_ORIG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/OK_ORIG.gif -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/new.gif -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/repo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/staticDropFiles/repo.gif -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/equinox-sdk/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- 1 | Bug 436039 - Hard to explain build failure in I20140528-0115 2 | Bug 458346 - Unusual, hard to decipher error in test I-build 3 | Bug 444188 - EclipsePreferences is not thread safe 4 | Bug 537705 - I-Build: I20180805-2000 build failed -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/rt.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/rt.icns -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/rt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng.tychoeclipsebuilder/equinox.starterkit.product/rt.ico -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- 1 | Bug 436039 - Hard to explain build failure in I20140528-0115 -------------------------------------------------------------------------------- /eclipse.platform.releng.tychoeclipsebuilder/repos/.gitignore: -------------------------------------------------------------------------------- 1 | featureTemp/ 2 | featureTemp2/ -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/build.properties: -------------------------------------------------------------------------------- 1 | pom.model.artifactId = releng-bundles 2 | pom.model.groupId = org.eclipse.platform 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.ant.optional.junit/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.ant.optional.junit/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.ant.optional.junit/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- 1 | # To force a version qualifier update add the bug here 2 | Bug 403352 - Update all parent versions to match our build stream 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.rcp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.rcp/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.rcp/about.mappings: -------------------------------------------------------------------------------- 1 | # about.mappings 2 | # contains fill-ins for about.properties 3 | # java.io.Properties file (ISO 8859-1 with "\" escapes) 4 | # This file does not need to be translated. 5 | 6 | 0=${buildId} 7 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.rcp/eclipse32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng/bundles/org.eclipse.rcp/eclipse32.png -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.rcp/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- 1 | # To force a version qualifier update add the bug here 2 | Bug 403352 - Update all parent versions to match our build stream 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.releng.tests/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | /*.jpage 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.releng.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.releng.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.releng.tests/ignoreErrorsUnix.txt: -------------------------------------------------------------------------------- 1 | 941 2 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.releng.tests/ignoreErrorsWindows.txt: -------------------------------------------------------------------------------- 1 | 127 2 | 128 3 | 941 4 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.releng.tests/miscTests.jpage: -------------------------------------------------------------------------------- 1 | Integer.MAX_VALUE / (1024*1024) 2 | (int) 2047 3 | (int) 2097151 -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.examples/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.examples/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.examples/about.mappings: -------------------------------------------------------------------------------- 1 | # about.mappings 2 | # contains fill-ins for about.properties 3 | # java.io.Properties file (ISO 8859-1 with "\" escapes) 4 | # This file does not need to be translated. 5 | 6 | 0=${buildId} 7 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.examples/eclipse32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng/bundles/org.eclipse.sdk.examples/eclipse32.png -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.examples/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- 1 | # To force a version qualifier update add the bug here 2 | Bug 403352 - Update all parent versions to match our build stream 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Bundle-ManifestVersion: 2 3 | Bundle-Name: Tests 4 | Bundle-SymbolicName: org.eclipse.sdk.tests; singleton:=true 5 | Bundle-Version: 4.37.0.qualifier 6 | Eclipse-BundleShape: dir 7 | 8 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.tests/about.mappings: -------------------------------------------------------------------------------- 1 | # about.mappings 2 | # contains fill-ins for about.properties 3 | # java.io.Properties file (ISO 8859-1 with "\" escapes) 4 | # This file does not need to be translated. 5 | 6 | 0=${buildId} 7 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.sdk.tests/eclipse32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng/bundles/org.eclipse.sdk.tests/eclipse32.png -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.test.performance.win32/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.test.performance.win32/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.test.performance.win32/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- 1 | # To force a version qualifier update add the bug here 2 | Bug 403352 - Update all parent versions to match our build stream 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.test.performance.win32/os/win32/x86_64/ivjperf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng/bundles/org.eclipse.test.performance.win32/os/win32/x86_64/ivjperf.dll -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.test.performance/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.test.performance/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.test/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | *.jpage -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/bundles/org.eclipse.test/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/build.properties: -------------------------------------------------------------------------------- 1 | pom.model.artifactId = releng-features 2 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.help-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.help-feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.platform-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.platform-feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.platform-feature/rootfiles/.eclipseproduct: -------------------------------------------------------------------------------- 1 | name=Eclipse Platform 2 | id=org.eclipse.platform 3 | version=4.37.0 4 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.rcp/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.rcp/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.sdk.examples-feature/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | # This comment added to "touch" the project. See bug 396009. -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.sdk.examples-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.sdk.examples-feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.sdk.examples-feature/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- 1 | # To force a version qualifier update add the bug here 2 | Bug 403352 - Update all parent versions to match our build stream 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.sdk.examples-feature/rootfiles/.eclipseextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-platform/eclipse.platform.releng.aggregator/a56cf08ef9c0969716a54f8a40f7ee42a331bfc0/eclipse.platform.releng/features/org.eclipse.sdk.examples-feature/rootfiles/.eclipseextension -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.sdk.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.sdk.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.sdk/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.sdk/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.test-feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/features/org.eclipse.test-feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /eclipse.platform.releng/publish-to-maven-central/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /oomph/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.eclipse.platform.sdk.setup 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /oomph/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /oomph/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /production/testScripts/configuration/sdk.tests/testScripts/.gitignore: -------------------------------------------------------------------------------- 1 | /results 2 | /out.txt 3 | /workarea/ 4 | /featureTemp/ 5 | /deltapack/ 6 | /deltapackmirrorlog.txt 7 | --------------------------------------------------------------------------------