eclipse

warnings in Eclipse

hello, can somebody please explain what does this warning mean undefined reference to 'WinMain@16' thanks in advance ...

Javaw.exe problem with Eclipse 5.0

I've a problem with Javaw.exe process. I am developping an application relative to media acknowledgment using jdsk 1.6.0.11 & Eclipse 5 for Plugin Developpment. every time i want test my web cam (JUnit) then i've got a message : "Javaw.exe will close,we're sorry".Anyone can help me please?? ...

Reusable architectural code management

Our code is in Java and Javascript (AJAX libraries). We have wrappers/reusable code around the existing libraries to perform mundane tasks like, db connections, session management, logging, hibernate settings, base structure, some reusable multitenancy code etc.. From the javascript end, we have page initializers, UI layout components, c...

Is there a way to replace the Eclipse JDT's code completion list with a multi-level tree?

I know that the eclipse code completion widget can be customized to add new suggestions and even to change the order. I'm wondering whether there's a way to replace the current list format (or single-level tree, if this is a tree control) with a tree of multiple levels. Thus, for example, instead of selecting from a list of methods so...

Java IDE - find all INDIRECT usages/references of a function or class?

In Netbeans or in Eclipse, you can use "Find Usages" or "References" from the right click context menu. If a() calls b(), using the functionality from b() will show you a(). However, what I want is to be able to see some kind of tree or have an option to see all usages of a given/class or method, such that if z() calls a() that using the...

Generating JavaDoc comments for existing code in Eclipse

I know it's possible to generate comments for classes, interface, etc., in the wizard screen when creating them, but I haven't found an option to generate javadoc comments for an existing file. Is it possible? Thanks. ...

Import Eclipse workspace with cyclic dependencies to NetBeans

I'm trying to import an Eclipse workspace consisting of about 10 projects (3 web applications and other class libraries) to NetBeans. The problem is that these projects have some circular dependencies. When I try to import the workspace into NetBeans, it gives lots (about 50? 60?) warnings about the circular dependencies. After frenetic...

Eclipse and python: library will import in interprer, but not in IDE

I'm running Windows 7, Python 2.6.4 and the latest version of Eclipse. I downloaded the boto library (http://code.google.com/p/boto/) and ran python setup.py install, which created boto-1.9b-py2.6.egg in C:\Python26\Lib\site-packages. Importing a class - say, by doing 'from boto.sqs.connection import SQSConnection' - works fine from th...

Remote Development Workflow with Tomcat and Eclipse

Currently, I have tomcat installed on the production server to serve my java webapps. I develop in eclipse at my personal workstation and then I use an ant script to build the project into a war file and deploy that on the server. This setup works well when I am on the same network as the server because deploying is almost instantaneous...

Android : Hello, Views > Google Map View Tuorial

Hi, I'm trying to complete the Android MapView tutorial @ www.developer.android.com/resources/tutorials/views/hello-mapview.html I think I've done the entire thing correctly but I'm getting an error message in Eclipse. I'm sure why. The problematic line of code is private ArrayList<OverlayItem> mOverlays = new ArrayList<OverlayItem>(...

How can I extend Eclipse Java search to JSPs?

Friends, Our JSP code uses both Spring form tags and JSTL tags. Is there a way that when I search for getFoo() in the Eclipse Java Search, for Eclipse to also return uses of the foo property in the JSP files? I suspect the answer is "no", because there isn't a way at compile time to tell the types of the JSP beans, but its worth asking...

Does the Eclipse IDE support JSF 2.0?

I have the WTP 3.1 plugin installed and have also installed the Glassfish v3 plugin. I am able to register my server. When I create a dynamic web project, I can see that the maximum dynamic web module version available is 2.5. I then choose the default configuration for Glassfish v3 but, when I look at it JSF, it is not selected by defa...

Eclipse JUnit Plugin Test very slow to re-execute Test Suite on Windows

I'm having an odd, and stressing, problem with running a large JUnit Plugin test suite in Eclipse. When I try to re-run a JUnit plugin suite that has just been executed, Eclipse hangs for quite some time before it eventually wakes up and launches. It can take up to 5 minutes sometimes, and increases with the size of the suite. Visually, ...

Idea: CodeIgniter codecompletion in Eclipse

I just figured out that all code completion for Eclipse is stored in plain files located here (example): .\eclipse\plugins\org.eclipse.php.core_2.1.1.v20090921-1100\Resources\language I tried adding global variables like $_POST, $_GET, $_SERVER to the end of basic.php but without any luck (did try to restart Eclipse). Is there a w...

A debbugging test, suggestions needed.

I am having a debugging test, as part of an interview.. I thought if any one can help with the approach, when I am faced with a large code base and have to find bugs inside that within an hour or two.This is going to be Core java based app (I guess) on Eclipse 3.2+ ...

Integrating Eclipse JDT Core into a new editor

I'm building a Java IDE and am trying to implement autocompletion or intellisense. After looking around for something that will do most of the work for me (not reinventing the wheel etc) I've pulled the code for Eclipse JDT core and am trying to figure out how to implement it in my own IDE. I'm obviously working under the assumption that...

Error while opening the Eclipse Android Layout Editor

Since yesterday everytime I open my layout Editor in Eclipse for the Android UI I get the following exception: Unhandled event loop exception java.lang.StackOverflowError at com.android.ide.eclipse.adt.internal.editors.layout.configuration.ConfigurationComposite.isTheme(Unknown Source) at com.android.ide.eclipse.adt.i...

Embedding QT application in Eclipse/RCP framework

Hi, I'm trying to embed my working QT application in Eclipse RCP framework(might not sound wise but i need to do this). I'm using QT 4.5 (not yet explored what QTJambi is all about and has to offer) I convert my existing application as a dll and load it through eclipse application. Things dont work as they should as the QTApplication lo...

JSON plugin for eclipse

I was googling for hours but could find a useful JSON plugin for Eclipse. I'd like to have something like that: Does anybody knows such a plugin? ...

checkstyle: disable ++ warning

I recently installed the checkstyle addon for eclipse, while it does help me make some parts of my code clearer, there are some stupid rules. I've been capable of disabling most of those besides the using ++ is not allowed rule. Does anyone have any idea how I can disable that one? ...