Questions tagged [eclipse]

Eclipse is an open source IDE and platform for building applications. There is a wide variety of plugins for various programming languages and other development-oriented tools (such as modeling, database browsing, etc.). This tag should only be used for questions specifically about the Eclipse IDE or platform, not for generalized (Java, etc.) programming topics.

Eclipse IDE is an open-source IDE platform written mostly in Java and primarily used for Java development through the use of the Java Development Tools (JDT) plug-ins. It is notable for its rich ecosystem of free and commercial plugins and that it is predominantly itself composed of plug-ins.

Eclipse IDE is built on an OSGI implementation called Equinox; the same OSGI-based framework is used for managing its plug-ins at runtime. Eclipse can also be used as a development environment for non-IDE GUI applications, leveraging many of the same plug-ins as the IDE to form a more general Rich Client Platform, called Eclipse RCP.

For C/C++ development, the Eclipse CDT Project provides plug-ins to create a C/C++ development environment within Eclipse IDE.

The Eclipse Web Tools Platform project supplies plug-ins for developing Open web standards-based and Java web applications, and frameworks for building higher-level web tools.

For PHP development, the Eclipse PDT Project provides a plugin to create a PHP development environment within Eclipse IDE, building on features of the Web Tools Platform. The popular commercial Zend Studio is also based on Eclipse IDE.

For Python development, PyDev provides plug-ins, called PyDev, to create a Python development environment within Eclipse IDE.

For Perl development, the EPIC project provides a plugin to create a Perl development environment within Eclipse IDE.

Note that Google has ceased developing the Android Development Tools in favor of another solution.

When combined with Cygwin (or MinGW), Mono, and its many plugins, Eclipse IDE provides a crucial part of viable open-source alternatives to using Microsoft Visual-Studio as a Windows software development platform in Windows, whilst also including comprehensive native support for Java.

Download the latest version of Eclipse IDE from eclipse.org
Download site for the Eclipse Platform project itself, including the core runtime and SDK
Eclipse Marketplace featuring Plug-ins, Bundles and Products

###Useful Links:


Within the Stack Overflow community, Eclipse is synonymous with the Java IDE, but that does not mean questions about Java are questions about the IDE.

Consider what changes your question would require if you were using vi to edit and ant to build; if your question would remain unchanged, then it is not an Eclipse question, so you should not give your question the tag. Use the tag instead.

Initial release Eclipse (1.0 - 7 November 2001)

Previous Version: Eclipse 2020-12 (4.17.0 - 16 December 2020)

Latest Version: Eclipse 2021-03 (4.18.0 - 17 March 2021)

If you suspect your issue is version specific, list the version in your question.

122304 questions
35
votes
3 answers

Custom TODO mark in Eclipse

In a Eclipse a // TODO comment in a Java file marks an area in code as a task for later consideration. Is there a way to add other expressions that will do the same? For example if I want to use // myprojectname.
richs
  • 4,481
  • 10
  • 39
  • 54
35
votes
5 answers

How to change auto-generated code when creating new class in Eclipse

Whenever I create a new Java file in Eclipse and check off the option to add public static void main(String args[]), this code is generated: public class Test { /** * @param args */ public static void main(String[] args) { …
Click Upvote
  • 235,452
  • 251
  • 553
  • 736
35
votes
3 answers

How to set eclipse console locale/language

When developing web application with Eclipse (Helios) the tomcat output is being sent to the console. Ok, but the messages are being translated to my OS language. In fact, my Eclipse is in English, but the Tomcat output (logging) is being translated…
Bob Rivers
  • 4,621
  • 6
  • 44
  • 55
35
votes
3 answers

IDEA: "Assign statement to new local variable"?

As a long time Eclipse user, I'm playing around a little bit with IntelliJ IDEA 10. I can't seem to find out how to perform an "Assign statement to new local variable" code completion. Feature explanation: I type something like new…
Chris Lercher
  • 36,020
  • 19
  • 96
  • 128
35
votes
5 answers

How to use breakpoints in Eclipse

I am using the Eclipse IDE. I don't know how effectively put breakpoints in Eclipse and go forward and backward into it. Can anyone help me? Can anyone suggest a site suitable for me?
Jisson
  • 2,915
  • 7
  • 34
  • 67
35
votes
14 answers

aapt not found under the right path

I just updated ADT, than the SDK and now I have in only one project the issue, that my aapt isn't found Error executing aapt. Please check aapt is present at /opt/android/platform-tools/aapt The path is correct, I checked twice and more…
WarrenFaith
  • 56,228
  • 24
  • 130
  • 145
35
votes
5 answers

How do I check out an SVN project into Eclipse as a Java project?

I was trying to check out a project from SVN using Eclipse. I tried using "Checkout As" to make it into a "Java project from existing Ant script", but the project wizard requires the file to have already been downloaded. Is there a way to checkout…
Hosam Aly
  • 38,883
  • 35
  • 132
  • 179
35
votes
5 answers

using googletest in eclipse: how?

I've downloaded google test, but now I've no idea on how to link it to my project in eclipse. Should I add it as a source folder? Should include it as g++ included library? And how can I run test then?
user478310
  • 351
  • 1
  • 3
  • 4
35
votes
6 answers

Removing an SVN location from Eclipse using Subclipse

I have added locations into Eclipse so I can, say, create projects from SVN locations. I am no longer using one of the SVN locations, but it still comes up in the list that appears when I go to Team > Create project from SVN location. How can I…
david99world
  • 18,271
  • 28
  • 102
  • 127
35
votes
5 answers

Build several CDT C++ projects from commandline

What is the best solution to build several CDT C++ projects from the command line? The projects have references and so it is not possible to just build single projects.
Rüdiger Stevens
35
votes
4 answers

How to use the GDB console in Eclipse CDT?

Is there a way how I can access gdb's console in Eclipse? I would like to just be able to set breakpoints with the mouse and then use the console for debugging.
Nils
  • 12,129
  • 17
  • 78
  • 103
35
votes
1 answer

Java object ID in jvm

There is an object ID displayed near the object value in Eclipse While debugging. For example: 28332 is an ID of session object. Another example: waiting for: (id=101) is displayed in the Debug panel. These IDs are neither a hash code nor a…
Gorbush
  • 353
  • 1
  • 3
  • 5
35
votes
8 answers

how to debug application as root in eclipse in Ubuntu?

I'm programming application using libpcap. when I debug the application in normal mode, pcap cannot get the network device. it seems that I have to debug the application in root. How can I debug the application in root? I have the root password. I…
futang
  • 351
  • 1
  • 3
  • 3
35
votes
4 answers

Locally declared variables can not be inspected

Sometimes when I am debugging code in Eclipse it happens that although I can see and inspect class member variables without any difficulty I am unable to inspect the values of variables declared locally within functions. As an aside, any parameters…
user35138
  • 353
  • 1
  • 3
  • 4
35
votes
8 answers

How can I get relative path of the folders in my android project?

How can I get the relative path of the folders in my project using code? I've created a new folder in my project and I want its relative path so no matter where the app is, the path will be correct. I'm trying to do it in my class which extends…
Alex Kapustian
  • 4,653
  • 14
  • 48
  • 76
1 2 3
99
100