Eclipse is an open source IDE with plugins available to support a large variety of languages. This tag should only be used for questions about the Eclipse IDE and not for generalized programming topics.

learn more… | top users | synonyms

1
vote
1answer
18 views

How to turn off automatic restart of Tomcat in Eclipse?

When developing Servlet, after changing a bit of my java code, and click run. Eclipse ask me to whether to restart the service or not. I click 'yes' and tick 'remember my choice'. So every time, ...
1
vote
1answer
12 views

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.5-r682619-maestro-2.0.0:test (default-test) on project

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.5-r682619-maestro-2.0.0:test (default-test) on project ms61-webservice-xxxx: There are test failures. what does it mean and how ...
0
votes
2answers
24 views

xhtml don't recognize methods declared in managed Bean

in my XHTML page I can't call methods declared in managed bean, I'm new to this platform , I'd like that some one clarifies this to me. I'm working on a JSF 2.1 project with JPA on Eclipse Juno 4.2 ...
-2
votes
3answers
42 views

Eclipse is not allowing me to write the method for finding MiddleElement

I'm writing the method to find the middle element from the given 3 numbers but eclipse is not allowing me to do so. Please help me what should I do? The code is below: public class MiddleElement { ...
0
votes
0answers
52 views

Eye Blink Detection in Java

I am developing an application in Java that should recognize, through images captured from a webcam, the blinking of the eyes of a person. For this, I am using OpenCV, I can recognize the person's ...
0
votes
1answer
27 views

Xcode formatting of objective C code

I am use to using a feature in eclipse that formats all of my code in a file to the same syntax position by hitting Shift + Ctrl + F. I don't even know what this feature is called but I was wondering ...
0
votes
0answers
17 views

Issues creating PhoneGap project in Eclipse with Android SDK

I'm trying to build an Android app with Eclipse and PhoneGap, but I keep getting the error [2013-05-21 17:47:39 - PhoneGapTest] Project has no target set. Edit the project properties to set one. ...
0
votes
0answers
9 views

Layout dinamico in Android Widget

how do I create a scrollview and add new ImageViews to the layout dynamically with the use of a button? i have use this code: @Override protected void onCreate(Bundle savedInstanceState) { // ...
0
votes
2answers
24 views

Failed to create BuildConfig class error massage in eclipse

i change nothing in google-play-services_lib SDK but i have x on this project and in console this error massage "Failed to create BuildConfig class" Recently I have not changed anything in ...
1
vote
1answer
26 views

Gradle compileJava task warning: [options] bootstrap class path not set in conjunction with -source 1.6

Below is the content of the build.gradle file: apply plugin: 'java' archivesBaseName = 'foo-bar' version = '1.0' sourceCompatibility = JavaVersion.VERSION_1_6 targetCompatibility = ...
1
vote
0answers
19 views

Can't save audio to phone using media player in eclipse

I'm trying to make a soundboard where you user can play and stop sound as well as save the sounds to phone. I have set it up fine but the save will not work. I'm not getting any error and not sure ...
1
vote
2answers
30 views

Source not Found on Android

Whenever I try to debug my app, Eclipse open a Class File Editor and gives a Source not Found and generally for basic Java classes (For example, Looper.class). I am really sick of this. I cannot debug ...
0
votes
1answer
35 views

Really Odd Android App Update Bug

I previously had an android app released on Google Play. I pushed out another update a couple days ago, but about 80% of the time, when a user tries to update to the new version, it seems to download ...
0
votes
0answers
25 views

Cocos2d-x | Errors when Running on Emulator

I am new to cocos2d-x. I configure cocos2d-x in Windows 8 / Eclipse and I use android-ndk-r8b. I created a project (HelloWorld)that is running.The program when run in the emulator gives the following ...
-3
votes
0answers
26 views

Implementing Eclipse Plugin functionality directly in Java class - not in Eclipse [closed]

Eclipse provides an extension point org.eclipse.compare.contentMergeViewers that allows the Java Source Compare feature to be modified. I would like to implement my own Java Source Compare, but ...
0
votes
0answers
11 views

Dependencies for jdt.compiler cannot be found

The issue is that it seems impossible to run ASTView from source; I get a NullPointerException, something to do with singletons I think. The solution - or so I thought - was to start a new plugin ...
0
votes
0answers
24 views

Show java class in a popup menu

I created a Plugin Project with the following plugin.xml: <extension point="org.eclipse.ui.popupMenus"> <objectContribution ...
-1
votes
0answers
39 views

Can't call methods from managed bean in my XHTML page

I'm working on a JSF 2.1 project with JPA on Eclipse Juno 4.2, I can call the objects declared in my managed bean from my XHTM , but the problem Is that XHTML files don't recognize methods knowing ...
1
vote
0answers
26 views

Read a file's content from the expression of a conditional JAVA breakpoint in Eclipse without creating variables

How do you read the content of a file from the expression of a conditional JAVA breakpoint in Eclipse? My breakpoint's condition is true when the value of my string variable contains 'earnings': ...
0
votes
1answer
6 views

how do you install pexpect on Eclipse with the pydev plugin?

I opened cmd and typed in 'pip install pexpect' and I have confirmation that it installed. However when I use eclipse, it does not recognize pexpect. Help would be greatly appreciated.
0
votes
3answers
43 views

Having trouble with adding an ArrayList to an ArrayList of ArrayLists

public class Tabel { private static int dimension; private ArrayList<ArrayList<Character>> tabel; public Tabel(int dimension) { Tabel.dimension = dimension; ...
0
votes
0answers
24 views

Eclipse cannot display variabile data in debug “Expression watch”

In debug mode the eclipse stopped showing the variabile data in expression watch few days ago out of nowhere. But it shows all the data in .this in the Expressions tab here is the pic:
0
votes
1answer
20 views

How to display eclipse project type

In Eclipse IDE there are icons to display the project type, but I can't find a text description. I would expect right click -> properties to show this info but according to this all projects are of ...
0
votes
0answers
21 views

Eclipse android application runs on android device but not on emulator [error message]

I'm developing an Android application on Eclipse. When I run it with an Android device hooked up (e.g. a Samsung phone) it runs just fine. However when I run it with the Android emulator I run into a ...
0
votes
1answer
22 views

How do Eclipse plugins work?

Specifically, I would like to know exactly what happens when Eclipse loads a plugin. To explain what I'm looking for: I am currently trying to decipher a plugin that reformats Java code to make ...
0
votes
0answers
24 views

Eclipse debug can't find fields

I'm using the Eclipse debugger and can't inspect/watch field values or results of field.method() calls. I've encountered the problem in both Juno and now in Indigo. At first I could resolve the ...
0
votes
0answers
10 views

Eclipse - Ignore Error by Type

Is it possible to have Eclipse ignore an error by type, rather than by resource? I have a few issues in POMs and Spring configuration that are flagged as errors. I don't want to disable XML ...
1
vote
0answers
39 views

I am trying to follow a tutorial here:

trying to follow this tutorial: http://www.youtube.com/watch?annotation_id=annotation_413231&feature=iv&src_vid=lQW1WQOCri0&v=zVIZSKP3tR8 to use AndEngine and by the time I reach the ...
0
votes
0answers
14 views

Using existing C++ and Ant Build In Eclipse

I am working someplace that is doing C++ development (Linux using g++) and uses no IDE. They have a code base and use Ant (build.xml) to do their development. Is it possible to use Eclipse (Juno ...
0
votes
1answer
24 views

Displaying CSV values in ANDROID APPLICATIONS ( After opening the APK )

I have been searching for methods to display the values in my csv files to the Android Applications but were not successful. ( I am a totally beginner for JAVA and Android ) Each time I took the ...
0
votes
1answer
26 views

Certificate fingerprints don't match after export

Hello I have a problem, When I try to upload my app to the Google Play Developer Console, it says the certificate fingerprints missmatch and shows another fingerprint than I'm seeing when I export ...
0
votes
0answers
17 views

Need a solution to Eclipse crash when loading javadoc

Whenever I hover over any code with information a window comes up with Java (TM) Platform binary has stopped working error and eclipse crashes. Plus the outline is not working either. Has anybody else ...
0
votes
0answers
15 views

Is there a way to organize breakpoints hierarchically on eclipse?

There are some configuration or plugin to able the creation of "breakpoint paths"? Exemple: If there are some piece of code "B" and "C" that runs many times in your project, but it are just ...
0
votes
1answer
11 views

How does the “Eclipse IDE” manipulate Windows environment “Path” variable?

I have problems setting "run configuration" in Eclipse. When I use the Windows cmd to compile and run java.class I use .bat file that looks like this: rem Wipe standard Windows Path variable and use ...
0
votes
0answers
6 views

Adding remote server on Eclipse PDT [duplicate]

Is there any way to add remote server like dreamweaver to eclipse PDT? (Site management in dreamweaver explained here. ...
0
votes
0answers
8 views

Eclipse JPA tools fails to load schema metadata for SQL Server

I am trying to use JPA with SQL Server. Eclipse has great tools to map entities from database and vice-versa. For this to work, I need to associate a connection to a JPA project. So I created a ...
0
votes
2answers
16 views

Attaching javadoc to libraries

as an example, I'd like to attach the javadoc to org.eclipse.swt As I've read in similar threads, I went to the build path, expanded the swt library node and tried to enter the url as the javadoc ...
1
vote
1answer
19 views

How can I create a Menu group after clicking a button?

What I want to do, is to create a menu with checkeable items like this: But just after clicking a button or icon in my main activity, so I can have different menus like this depending on the button ...
0
votes
1answer
17 views

Is it possible to mock all the objects around an eclipse RCP application?

I've been trying for a while now to do something a bit strange... I need to invoke some code that gets executed by a eclipse rcp wizard window from outside the rcp environment. Basically some third ...
0
votes
0answers
21 views

How to access the eclipse workspace path while loading csv file into mysql using Java?

I am developing a project in which the user will upload a csv file and it will get stored in a folder in workspace . Then after clicking submit button that csv file must get loaded in mysql DB.I am ...
4
votes
0answers
54 views

Android Library Dependencies broken after SDK/ADT-Update

Today, I updated my Android SDK and Eciple ADT to the most recent versions (ADT Rev 22). After restarting Eclipse it is quite unhappy with the Build Paths whenever I reference custom libraries. An ...
0
votes
0answers
20 views

Code is Working Properly in NetBeans but not in Eclipse

I have tried the following jsp file in both IDEs. It is working good in NetBeans, but it is not working in Eclipse. The program is to get the time from a NTP server. Code is as follows <%-- ...
0
votes
0answers
15 views

JSF related project facets not appearing in Eclipse Juno

I'm trying to create a dynamic web project with JSF 2.0 configuration in Eclipse Java EE Juno SR1. I have installed WTP tools from http://download.eclipse.org/releases/juno/. I use Java 1.6 I face ...
-5
votes
1answer
46 views

Eclipse as an applet? [closed]

Is it possible to run eclipse without downloading, installing, unpacking or even having the file on the computer, to use it like a applet in the browser?
0
votes
1answer
12 views

JUNG Exception in “main” :org/apache/commons/collections/Predicate

I am getting started with Java Universal Network/Graph Framework (JUNG). I am trying to build a basic graph using the same. I downloaded the jung 2.0.1 libraries. collections-generic-4.0.1.jar and ...
3
votes
0answers
57 views

What is the Eclipse equivalent of Visual Studio's build configurations?

I'm porting some Windows code to Android. The Visual Studio project has various different build configurations for different versions of the application, (e.g. full version vs. demo). What is the ...
0
votes
1answer
35 views

no MainActivity in the debug window in eclipse where I have the breakpoints

I am trying to debug with eclipse but there is no "MainActivity" in the "debug" window , in order to select and check the variables where I have breakpoints. I am debugging with the device attached. ...
1
vote
1answer
25 views

embedded Jetty in Eclipse RCP

I have a problem for embeding Jetty into my Eclipse RCP application. In my RCP application, when user click some button, a browser will be opened and some jsp page shown. The jsp files are in a ...
0
votes
0answers
27 views

error in integrating maven plugin in android project

I am trying to build an android application project using maven and eclipse. I created a 'hello world' file and then converted it into a maven project. After adding com.google.android dependency and ...
0
votes
0answers
18 views

Importing eclipse key preferences to Android studio

I've exported my key preferences from eclipse, and now I have a file with epf extension. How can I import that file in Android studio? I want to have my custom key preferences there, so I do not ...

1 2 3 4 5 887