Eclipse
Eclipse is an open source IDE originally created by IBM in November 2001 and supported by a consortium of software vendors. The Eclipse Foundation was created in January 2004 as an independent not-for-profit corporation to act as the steward of the Eclipse community. The independent not-for-profit corporation was created to allow a vendor neutral and open, transparent community to be established around Eclipse. Today, the Eclipse community consists of individuals and organizations from a cross section of the software industry.[1]
Contents
- 1 Initiatives
- 2 Shortcuts
- 3 Custom
- 4 Tools
- 5 Resources
- 6 Tutorials
- 7 External Links
- 8 References
- 9 See Also
Initiatives
IDE
The Eclipse IDEs (both downloadable/installable and cloud/web-based) are the foundation's primary product, through which most initiatives are channeled.
- Eclipse IDE: https://www.eclipse.org/ide/
JDK
Adoptium
Working Group, renamed from prior "AdoptOpenJDK".
- Eclipse Adoptium: https://projects.eclipse.org/projects/adoptium
JakartaEE
See: JakartaEE (formerly J2EE, then JEE... "Java on the web" stack)
IoT
- Eclipse IoT: https://iot.eclipse.org/
Shortcuts
Find Files (by filename)
To filter and quickly find files in a given project by Filename, highlight project then:
CTRL+SHIFT+R
Find Files (by Project contents)
Also useful is a manual search by text contained in all files (for a given project or directory of a project):
Highlight project, (from top menu) Search-->File
Find Occurences of Text in All Projects
To find occurences of a given set of Text in all files types within ALL Projects currently open in the IDE, you can simply hit:
CTRL+H (then choose "File Search")
Find Definition (instantiation)
This helps you quickly find the place where of method/function or object/variable is instantiated in the code:
CTRL+G
Find next usage (in current file)
This helps you step between declarations, instantiations and usages of a variable:
CTRL+K
Call Hierarchy (calls to method/property)
Call Hierarchy allows you to find all all calls to and from a selected method, property, or constructor.
CTRL+ALT+H
- More Intelligent Eclipse “Open Call Hierarchy”?: http://stackoverflow.com/questions/4650021/more-intelligent-eclipse-open-call-hierarchy[3][4]
Auto Import & Import Cleanup
This will add any missing imports that Java knows about (a selection prompt will appear if there are multiple possible matches by name but different packages in the available paths/libs), and, as a side-effect this will automatically cleanup the order/spacing and remove any unused classes from the list of import statements:
CTRL+SHIFT+O
- How to import all missing Java packages at once in Eclipse IDE: https://crunchify.com/java-simple-way-to-import-all-missing-packages-at-once/ ("organize imports" shortcut CTRL+SHIFT+O)
- How to remove unused imports from Eclipse: https://stackoverflow.com/questions/5686825/how-to-remove-unused-imports-from-eclipse (shortcut CTRL+SHIFT+O or right-click the desired package then click "Source-->Organize Imports")
Generate Getters/Setters
This will auto-generate the standard Getter/Setter boilerplate code off of the list of "instance variables" already declared at the top of inside the class:
ALT+SHIFT+S (then R to skip the prompt and generate for all)
Run on Server
Start the default application server and all installed applications within it (requires an AppServer to be setup within the IDE):
CTRL+R
Custom
These need to be set within Windows --> Preferences --> Keys but are particularly useful:
List all key shortcuts/bindings
You can list out all currently mapped Shortcut Keys (bindings) using:
Ctrl+Shift+L
Clean/Build
Listed under "Build Clean". This will kick off a new build (requires a "build.xml" file for project):
Ctrl+Alt+B
Deploy
Listed under "Run". This will re-deploy the most recent build (requires a project to already be registered to a given server within the IDE):
Ctrl+Alt+D
Templates
- Eclipse Code Templates: http://www.eclipse.org/pdt/help/html/code_templates_preferences.htm[10][11][12][13][14]
- Useful Eclipse Java Code Templates: https://stackoverflow.com/questions/1028858/useful-eclipse-java-code-templates[15][16]
Tools
- YOXOS - build your own Eclipse (with plugins/dependencies): http://yoxos.com
- Eclipse Orion: http://www.eclipse.org/proposals/eclipse.orion/ | SRC | DOWNLOAD | DOCS[17][18][19][20][21]
Resources
- Eclipse.ini: http://wiki.eclipse.org/Eclipse.ini
- Eclipse Shortcuts: http://www.allapplabs.com/eclipse/eclipse_shortcuts.htm
- 10 Eclipse Navigation Shortcuts Every Java Programmer Should Know: http://rayfd.me/2007/05/20/10-eclipse-navigation-shortcuts-every-java-programmer-should-know/
- How to Increase Console Buffer Size in Eclipse IDE - Output and Debug Console: http://javarevisited.blogspot.com/2013/03/how-to-increase-console-buffer-size-in.html#ixzz3ANRe64OO: http://javarevisited.blogspot.ca/2013/03/how-to-increase-console-buffer-size-in.html
Plugins
- Jenkins Continuous Integration plugin: https://wiki.jenkins-ci.org/display/JENKINS/Eclipse+Update+Site+Plugin[22][23][24]
- eCobertura: http://ecobertura.johoop.de/[25]
- Eclipse Metrics plugin 1.3.8 - Getting started: http://metrics2.sourceforge.net/[26]
- Mylyn: http://www.eclipse.org/mylyn/ (Bugzilla, Trac, JIRA and other productivity tool conectors)
- Google AppEngine: https://developers.google.com/eclipse/
- JBoss Tools: http://marketplace.eclipse.org/node/420896 (includes Hibernate, JSF, Drools, jBPM and more)[27][28][29]
- Spring IDE plugin: http://marketplace.eclipse.org/content/spring-ide[30][31]
- Maven m2eclipse: http://eclipse.org/m2e/[32][33][34][35][36]
- Subversive: http://www.eclipse.org/subversive/
- eGit: http://www.eclipse.org/egit/
Tutorials
- Eclipse - Change/Convert general to Java project: http://enarion.net/programming/eclipse-change-general-to-java-project/
- Convert "Java Project" to "Web Project" in Eclipse: http://www.mkyong.com/java/how-to-convert-java-project-to-web-project-in-eclipse/[37][38]
- How can I import a NetBeans Java project into Eclipse?: https://www.experts-exchange.com/questions/28663053/How-can-I-import-a-NetBeans-Java-project-into-Eclipse.html[39][40][41][42]
- How to get eclipse show a folder from file system: https://stackoverflow.com/questions/10012019/how-to-get-eclipse-show-a-folder-from-file-system
- How to view hierarchical package structure in Eclipse package explorer: https://stackoverflow.com/questions/3915961/how-to-view-hierarchical-package-structure-in-eclipse-package-explorer
- Changing switches to “if-else” statements: https://stackoverflow.com/questions/8394260/changing-switches-to-if-else-statements
- How to Configure Git in Eclipse IDE: https://dzone.com/articles/how-to-configure-git-in-eclipse-ide
- Step-by-Step -- How to Configure BitBucket Git Repository in your Eclipse Environment? Git version control with Eclipse: https://crunchify.com/how-to-configure-bitbucket-git-repository-in-you-eclipse/
- How to sync up "Project Explorer" and "Editor" (click two-way arrow in top-right toolbar of Project Exlorer): http://help.eclipse.org/helios/index.jsp?topic=%2Forg.eclipse.platform.doc.user%2Fconcepts%2Fcnav.htm
- Using Different Location for Eclipse's .p2 file (plugin/dependency lib directory): http://stackoverflow.com/questions/37864572/using-different-location-for-eclipses-p2-file
- How to make an existing directory into an eclipse project: http://stackoverflow.com/questions/4170963/how-to-make-an-existing-directory-into-an-eclipse-project
- How to change default text file encoding in Eclipse?: https://stackoverflow.com/questions/3751791/how-to-change-default-text-file-encoding-in-eclipse (i.e. "Windows CP1252" to "UTF-8")
- Pro Tip - Unicode characters in the Eclipse console: https://eclipsesource.com/blogs/2013/02/21/pro-tip-unicode-characters-in-the-eclipse-console/
- "Code Folding" in Eclipse Text Editors: https://www.eclipse.org/articles/Article-Folding-in-Eclipse-Text-Editors/folding.html
- How To Install "Hibernate Tools" in Eclipse IDE: http://www.mkyong.com/hibernate/how-to-install-hibernate-tools-in-eclipse-ide/
- Integrate your Eclipse Juno IDE with Openshift: http://middlewaremagic.com/jboss/?p=2583
- Java Debugging with Eclipse tutorial: http://www.vogella.com/articles/EclipseDebugging/article.html[43][44]
- 10 tips on debugging code in Java with Eclipse: http://javarevisited.blogspot.com/2011/07/java-debugging-tutorial-example-tips.html#ixzz2SXF8JFtI[45]
- Eclipse doesn't stop at breakpoints: https://stackoverflow.com/questions/4388192/eclipse-doesnt-stop-at-breakpoints (look out for accidentally clicking the blue icon to the left-most near the "drag handle")
- Target JRE in Eclipse: http://stackoverflow.com/questions/9092284/target-jre-in-eclipse
- Eclipse “cannot find the tag library descriptor” for custom tags (not JSTL!): http://stackoverflow.com/questions/1265309/eclipse-cannot-find-the-tag-library-descriptor-for-custom-tags-not-jstl
- How do I change the Javadocs template generated in Eclipse?: https://stackoverflow.com/questions/2612633/how-do-i-change-the-javadocs-template-generated-in-eclipse
- How do I set ${user} in Eclipse to get the correct @author tag?: https://stackoverflow.com/questions/935711/how-do-i-set-user-in-eclipse-to-get-the-correct-author-tag
- Javadoc template generator (Eclipse): https://stackoverflow.com/questions/29689/javadoc-template-generator
- Generating Javadoc In Eclipse IDE: http://www.eclipse-blog.org/eclipse-ide/generating-javadoc-in-eclipse-ide.htmlHow to generate Javadoc in Eclipse: http://www.codejava.net/ides/eclipse/how-to-generate-javadoc-in-eclipse[46]
- Auto-Generate JavaDoc comments in Eclipse (for Java code): https://stackoverflow.com/questions/12580746/auto-generate-javadoc-comments-in-eclipse
- Autogenerate function comments in Eclipse (for JS code): https://stackoverflow.com/questions/4033190/autogenerate-function-comments-in-eclipse[47]
- Customize the Eclipse Outline: http://winterbe.com/posts/2009/10/05/customize-the-eclipse-outline/
- Setting the JavaScript Build Path: http://www.eclipse.org/pdt/help/html/setting_the_javascript_build_path.htm[48]
- Is there a way in Eclipse to change the ECMAScript compliance level?: https://stackoverflow.com/questions/31624174/is-there-a-way-in-eclipse-to-change-the-ecmascript-compliance-level
- Eclipse -- TERN plugin: https://github.com/angelozerr/tern.java | DOWNLOAD | DEMO | DOCS[49][50][51]
- How do I change Eclipse to use spaces instead of tabs?: https://stackoverflow.com/questions/407929/how-do-i-change-eclipse-to-use-spaces-instead-of-tabs (shortcut is CTRL+i if you've chosen Tabs .vs. Spaces it will do the switch, and vice-versa)
- Replace spaces with tabs using Eclipse: https://stackoverflow.com/questions/22213098/replace-spaces-with-tabs-using-eclipse
- Show SOME invisible/whitespace characters in Eclipse: https://stackoverflow.com/questions/364168/show-some-invisible-whitespace-characters-in-eclipse
- Eclipse docs -- Adding a facet to a Java EE project: https://help.eclipse.org/neon/index.jsp?topic=%2Forg.eclipse.jst.j2ee.doc.user%2Ftopics%2Ftaddingfacet.html
- Java compiler level does not match the version of the installed Java project facet: https://stackoverflow.com/questions/7715260/java-compiler-level-does-not-match-the-version-of-the-installed-java-project-fac
- Find (Display) TODO tags in Eclipse: https://stackoverflow.com/questions/16903046/find-todo-tags-in-eclipse
- Where is Eclipse Error Log ??: https://manuelselva.wordpress.com/2008/01/25/where-is-eclipse-error-log/[52][53][54]
- How can I change @author tag configuration in eclipse in such a way that it takes the name I have specified?: https://stackoverflow.com/questions/13967636/how-can-i-change-author-tag-configuration-in-eclipse-in-such-a-way-that-it-take
- How to change the value of ${user} variable used in Eclipse templates: https://stackoverflow.com/questions/246192/how-to-change-the-value-of-user-variable-used-in-eclipse-templates (change setting -Duser.name in the file "eclipse.ini" within the Eclipse install directory)
- Convert Eclipse project type from general to Java: https://stackoverflow.com/questions/9592081/convert-eclipse-project-type-from-general-to-java
- Class “model.Address” is listed in the persistence.xml file but not mapped: https://stackoverflow.com/questions/2242637/class-model-address-is-listed-in-the-persistence-xml-file-but-not-mapped
- How to setup Node.js project in Eclipse: https://techprd.com/how-to-setup-node-js-project-in-eclipse/[55]
- No JavaScript syntax highlighting iby default n Eclipse 2020-09: https://stackoverflow.com/questions/64271013/no-javascript-syntax-highlighting-in-eclipse-2020-09 (set back to "Generic Text Editor" after installing "WildWebDeveloper" plugin and/or "Eclipse Web Developer" plugin)[56][57]
- Creating PHP Projects: https://www.eclipse.org/pdt/help/html/creating_php_projects.htm
- Create Hello World Project: https://www.poftut.com/php-create-hello-world-project-eclipse/
- Managing databases with Eclipse and the Database Tools - Tutorial: http://www.vogella.com/tutorials/EclipseDataToolsPlatform/article.html
- How to configure proxy settings in Eclipse: https://www.mkyong.com/web-development/how-to-configure-proxy-settings-in-eclipse/
- How to configure proxy settings for (all network requests via global runtime args) Eclipse: https://www.ibm.com/support/pages/how-configure-proxy-settings-eclipse
External Links
- wikipedia:Eclipse IDE
- Eclipse: http://eclipse.org
- Eclipse Development Process 2018-2019: https://waynebeaton.wordpress.com/2018/12/19/eclipse-development-process-2018/
- Eclipse Indigo Bogdown: http://gordondickens.com/wordpress/2011/05/06/eclipse-indigo-bogdown/
- How to use Subversion with Eclipse: http://www.ibm.com/developerworks/opensource/library/os-ecl-subversion/
- Automated Error Reporting in Eclipse Mars (and up): https://www.infoq.com/news/2015/03/eclipse-mars-reporting (diagnostics sent in to Eclipse dev team)
- Classpath entry org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER will not be exported: https://stackoverflow.com/a/9248287/335867 (Right-Click on the Warning/Error in the Editor or in the "Problem" view tab, then select Quick Fix and Mark the associated raw classpath entry as a publish/export dependency)[59]
- How to use Subversion with Eclipse: http://www.ibm.com/developerworks/opensource/library/os-ecl-subversion/
- How to configure Spring IDE into Eclipse helios: http://forum.springsource.org/showthread.php?108408-How-to-configure-Spring-IDE-into-Eclipse-helios
- Spring Tools Suite (STS) standalone - installation instructions (built on Eclipse): http://download.springsource.com/release/STS/doc/STS-installation_instructions.pdf
- Can't install tern.java in Eclipse IDE: https://stackoverflow.com/questions/37953612/cant-install-tern-java-in-eclipse-ide
- Is it possible to hide/remove arbitrary context menu items in Eclipse (3.6): https://stackoverflow.com/questions/3482312/is-it-possible-to-hide-remove-arbitrary-context-menu-items-in-eclipse-3-6
- How to modify java editor's context menu per perspective?: https://stackoverflow.com/questions/8184164/how-to-modify-java-editors-context-menu-per-perspective
- Missing link between objectContribution and command: https://stackoverflow.com/questions/5915550/missing-link-between-objectcontribution-and-command
- Adding an entry in a submenu of a popup: https://stackoverflow.com/questions/2073325/adding-an-entry-in-a-submenu-of-a-popup?lq=1
- 15 Productivity Tips for Eclipse Java IDE Users: https://dzone.com/articles/15-productivity-tips-for-eclipse-java-ide-users
- Git / JGit » Unable to upgrade Eclipse Luna due to missing repositories: https://www.eclipse.org/forums/index.php/t/786959/
- Eclipse projects not showing up after placing project files in workspace/projects: https://stackoverflow.com/questions/8684279/eclipse-projects-not-showing-up-after-placing-project-files-in-workspace-project
- Eclipse not showing package which is already there: https://stackoverflow.com/questions/7279112/eclipse-not-showing-package-which-is-already-there
- Error when try install plugin: https://stackoverflow.com/questions/25094583/error-when-try-install-plugin (how to resolve "org.eclipse.equinox.internal.p2.engine.phases.CheckTrust phase")
- No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?: https://stackoverflow.com/questions/19655184/no-compiler-is-provided-in-this-environment-perhaps-you-are-running-on-a-jre-ra
- Eclipse 2020-09 Java IDE Improvements (including Git and general improvements): https://www.youtube.com/watch?v=-qsW-0Ztg_U
References
- ↑ About Eclipse Foundation: http://www.eclipse.org/org/
- ↑ Eclipse Adoptium Working Group Formally Established: https://www.infoq.com/news/2021/03/eclipse-adoptium-established/
- ↑ How can I get the complete Call Hierarchy of a Java source code?: http://stackoverflow.com/questions/20589962/how-can-i-get-the-complete-call-hierarchy-of-a-java-source-code
- ↑ Call Hierarchy (in VisualStudio): https://msdn.microsoft.com/en-us/library/dd409859.aspx
- ↑ What is the difference between call hierarchy and find references in Eclipse?: http://stackoverflow.com/questions/14019906/what-is-the-difference-between-call-hierarchy-and-find-references-eclipse
- ↑ Eclipse -- List of key bindings: http://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.platform.doc.user%2Freference%2Fref-keybindings.htm
- ↑ Effective Eclipse -- Shortcut Keys: https://dzone.com/articles/effective-eclipse-shortcut-key
- ↑ Keybinding keys to insert custom code Eclipse: https://stackoverflow.com/questions/11518784/keybinding-keys-to-insert-custom-code-eclipse (CTRL+SPACE SPACE can be used to do code template auto-suggestions)
- ↑ Top 30 Eclipse Keyboard Shortcuts for Java Programmers: https://dzone.com/articles/top-30-eclipse-keyboard-shortcuts-for-java-program-1
- ↑ Eclipse Code Templates tutorial: http://www.tutorialspoint.com/eclipse/eclipse_code_templates.htm
- ↑ Getting started with Eclipse code templates: https://www.ibm.com/developerworks/opensource/tutorials/os-eclipse-code-templates/index.html
- ↑ Eclipse Custom Variable for Java Code Templates: https://stackoverflow.com/questions/350600/eclipse-custom-variable-for-java-code-templates
- ↑ Use your own variable in eclipse code templates: https://thomaswabner.wordpress.com/2009/08/21/use-your-own-variable-in-eclipse-code-templates/
- ↑ Use Maven Artifact Version in Eclipse Code Templates: https://ahoehma.wordpress.com/2009/08/24/use-maven-artifact-version-in-eclipse-templates/
- ↑ Eclipse Code Templates: http://fahdshariff.blogspot.ca/2008/11/eclipse-code-templates.html
- ↑ Useful Eclipse Templates for Faster Coding: http://fahdshariff.blogspot.ca/2011/08/useful-eclipse-templates-for-faster.html
- ↑ Eclipse Orion -- Your IDE in the Cloud: http://www.eclipse.org/community/eclipse_newsletter/2016/january/article4.php
- ↑ Meet Eclipse Orion: For the cloud, in the cloud: http://www.ibm.com/developerworks/cloud/library/cl-orionsummary/index.html
- ↑ Eclipse Orion - Getting started: http://wiki.eclipse.org/index.php?title=Orion/Documentation/User_Guide/Getting_started&cm_mc_uid=93546180585114857091001&cm_mc_sid_50200000=1485771516
- ↑ Install Orion on (your machine) Localhost: http://wiki.eclipse.org/Orion/How_Tos/Install_Orion_on_Localhost
- ↑ Eclipse Orion - A Web Experience for Software Development: https://dzone.com/articles/eclipse-oriont
- ↑ Huson CI server plugin for Eclipse: http://www.eclipse.org/hudson/
- ↑ Setting up Eclipse to build Jenkins: https://wiki.jenkins-ci.org/display/JENKINS/Setting+up+Eclipse+to+build+Jenkins
- ↑ Control Hudson or Jenkins from Eclipse Indigo 3.7: http://ralf.schaeftlein.de/2011/07/15/control-hudson-or-jenkins-from-eclipse-indigo-3-7/
- ↑ Cobertura: http://cobertura.sourceforge.net/
- ↑ Eclipse count "lines of code": https://stackoverflow.com/questions/6924158/eclipse-count-lines-of-code
- ↑ Hibernate Tools: http://marketplace.eclipse.org/content/hibernate-tools-0
- ↑ Hibernate Tools: http://www.hibernate.org/subprojects/tools.html
- ↑ Hibernate Tools install -- Step-By-Step: http://www.youtube.com/watch?v=AtRstkliJ48 (VIDEO)
- ↑ How to install Spring IDE in Eclipse: http://www.mkyong.com/spring/how-to-install-spring-ide-in-eclipse/
- ↑ Spring Tool Suite (STS) for Eclipse Juno (3.8 + 4.2) 3.1.0.RELEASE: http://marketplace.eclipse.org/content/spring-tool-suite-sts-eclipse-juno-42
- ↑ Maven Eclipse Plugin: http://maven.apache.org/plugins/maven-eclipse-plugin/
- ↑ Cannot search for artifact in Eclipse Kepler using m2e plugin: http://stackoverflow.com/questions/18047843/cannot-search-for-artifact-in-eclipse-kepler-using-m2e-plugin
- ↑ Eclipse - Maven search dependencies don't work: http://stackoverflow.com/questions/14059685/eclipse-maven-search-dependencies-doesnt-work
- ↑ Nexus public respository empty cant create maven project: http://stackoverflow.com/questions/24678470/nexus-public-respository-empty-cant-create-maven-project
- ↑ Classic error -- Unable to update index for central|http://repo1.maven.org/maven2: http://stackoverflow.com/questions/7065478/classic-error-unable-to-update-index-for-centralhttp-repo1-maven-org-maven2
- ↑ The server does not support version 3.1 of the J2EE Web module specification on Eclipse: https://stackoverflow.com/questions/40925643/the-server-does-not-support-version-3-1-of-the-j2ee-web-module-specification-on?noredirect=1&lq=1
- ↑ The server does not support version 3.0 of the J2EE web module specification: https://stackoverflow.com/questions/6922391/the-server-does-not-support-version-3-0-of-the-j2ee-web-module-specification
- ↑ How to transfer Netbeans Project into Eclipse?: https://stackoverflow.com/questions/2122633/how-to-transfer-netbeans-project-into-eclipse
- ↑ How to get your Netbeans project into Eclipse: https://stackoverflow.com/a/33407417/335867
- ↑ Migrating From NetBeans to Eclipse: https://stackoverflow.com/questions/836647/migrating-from-netbeans-to-eclipse
- ↑ Importing Java Web EE Netbeans Project to Eclipse: https://stackoverflow.com/questions/12079395/importing-java-web-ee-netbeans-project-to-eclipse
- ↑ Using the Eclipse Debugger: http://www.youtube.com/watch?v=9gAjIQc4bPU
- ↑ How to set a breakpoint in Eclipse in a third party library?: http://stackoverflow.com/questions/370814/how-to-set-a-breakpoint-in-eclipse-in-a-third-party-library
- ↑ FAQ How do I set a conditional breakpoint?: http://wiki.eclipse.org/FAQ_How_do_I_set_a_conditional_breakpoint%3F
- ↑ How to generate Javadoc HTML in Eclipse?: https://stackoverflow.com/questions/4468669/how-to-generate-javadoc-html-in-eclipse
- ↑ Should JavaDoc comments be added to the implementation: https://stackoverflow.com/questions/3061387/should-javadoc-comments-be-added-to-the-implementation
- ↑ The resource is not on the build path of a javascript project: https://stackoverflow.com/questions/24505993/the-resource-is-not-on-the-build-path-of-a-javascript-project
- ↑ Tern & ECMAScript support: https://github.com/angelozerr/tern.java/wiki/Tern-&-ECMAScript-support
- ↑ Tern plugin for Eclipse IDE - Installation: https://github.com/angelozerr/tern.java/wiki/Tern-Eclipse-IDE
- ↑ Tern Console: https://github.com/angelozerr/tern.java/wiki/Tern-Console
- ↑ IBM Integration Bus, Version 9.0.0.8 Operating Systems: AIX, HP-Itanium, Linux, Solaris, Windows, z/OS: https://www.ibm.com/support/knowledgecenter/en/SSMKHH_9.0.0/com.ibm.etools.mft.doc/au16690_.htm
- ↑ Eclispe - Error Log: https://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.platform.doc.user%2Freference%2Fref-error_log_view.htm
- ↑ FAQ Where can I find that elusive .log file?: https://wiki.eclipse.org/FAQ_Where_can_I_find_that_elusive_.log_file%3F
- ↑ Nodeclipse - update site: http://www.nodeclipse.org/updates/
- ↑ Javascript file editing stopped working with Eclipse 2020-06: https://stackoverflow.com/questions/62742955/javascript-file-editing-stopped-working-with-eclipse-2020-06
- ↑ Javascript file editing stopped working with Eclipse 2020-06: https://stackoverflow.com/questions/62742955/javascript-file-editing-stopped-working-with-eclipse-2020-06 (Windows --> Preferences --> file associations then select *.js on the right side list, then select "Generic Text Editor" below and click "Default" button)
- ↑ Eclipse JavaScript Editor: content assist for js files, autocompletion: https://stackoverflow.com/questions/1006934/eclipse-javascript-editor-content-assist-for-js-files-autocompletion
- ↑ Loose classpath web libraries support: https://www.ibm.com/support/knowledgecenter/SSRTLW_8.0.4/com.ibm.javaee.doc/topics/tlooseclasspath.html