eclipse

Removing popUpMenus from CNF (Common Navigator Framework) in Eclipse.

Hello all, I have been partially successful at removing almost all the popUp menus from the Commons Navigator Framework simply by configuring the plugin.xml file. There are 2 menus that refuse to go: group.edit and group.reorganize. My plugin.xml config looks like this: <extension point="org.eclipse.ui.navigator.viewer"...

Syntax error on ArrayList declaration

Hi, I've got the following code: import java.util.*; public class Group { public static void main(String[] args) { ArrayList<Integer> list = new ArrayList<Integer>(); } } Eclipse (3.0.0) complains about the ArrayList declaration: syntax error on token "(", on both tokens "<", and then on token "=". I'm using java 1.5.0_0...

What would make Ant execute 'javac' in Eclipse with UTF-8 instead of my system default Cp1252?

The last week I've been trying to figure out why some stream decoding my newly adopted application is doing was giving me some major encoding problems. Finally I figured out that the problem was that the JARs/WAR being built with Ant and deployed to the server were being compiled with the javac task using the encoding UTF-8 instead of th...

How do I modify the set method signature that Eclipse auto generates?

My current project has the coding convention that instance variables are never referred to with the this. prefix and that parameters should never hide instance variables. This results in setters that look like: public void setFoo(final Foo aFoo) { foo = aFoo; } Unfortunately eclipse won't generate that for me by default. I've found...

What are the most important features of an IDE for Perl development?

As some of you might know I am the lead developer of Padre, the Perl IDE. In the first year of its development Padre became an acceptable text editor with some extra features for Perl development. I'd like to ask the Stack Overflow community for some help in driving the project further to turn it into an exceptional IDE for Perl develop...

What are the new features in Eclipse Galileo?

I couldn't find any description of this on the site. What are some of the new features/improvements/changes in Eclipse Galileo from its previous version? Particularly for Java programming. ...

Java API in eclipse

Im new to eclipse , can anybody tell me how to use an JAVA API in eclipse. or share any sample Java API. Yes, how to use JavaDoc file in eclipse. ...

How does one configure Eclipse to compile using -std=c99?

The question is in the title. Using GCC version 3.4.5 on Windows Vista and a recent version of the Eclipse C/C++ IDE (not sure what version exactly because it's hard to figure out which version is the one for the whole IDE, but I downloaded it two weeks ago so it can't be that old). ...

Renaming objects with Wing IDE

I am just transitioning from Eclipse to Wing IDE for my Python code. In Eclipse I had an option to "rename" objects. I could take any object defined in my code, it could be a variable or a function or a method or whatever, and I could rename it automatically in all the files that referenced it. Is there a similar feature in Wing IDE? ...

How to enable autocomplete/syntax-highlight for PHP core functions in Eclipse?

I searched a lot, checked many times the neccesary steps, but it still don't work. My environment is : Latest eclipse for PHP developer package Project is newed, not check out directly from SVN .project has a line <nature>org.eclipse.php.core.PHPNature</nature> .buildpath has a line <buildpathentry kind="con" path="org.eclipse.p...

eclipse hang when copiying / pasting code

Hi coders ! I have a big problem. Eclipse is hanging up when I do any copy/paste with ctrl+C ctrl+V keys. Is it due to the Eclipse validation code system ? Do I mess something in my eclipse setting ?? Here is my conf : eclipse 3.4.2 plugin RSE Windows XP pro Service Pack 2 java vm version = 1.5.0_11-b03 ...

Ignore SVN files when exporting a WAR file from Eclipse?

I have a Dynamic Web Project in Eclipse. I can pack it to a WAR by right-clicking the project and choosing Export > WAR File. This creates the WAR file as expected and it works. The problem is that Eclipse includes all the .svn folders of the project into the WAR file. Is there a way to tell Eclipse to ignore .svn folders in the WAR ex...

Where can I get the source code for Eclipse?

I want to get the Eclipse platform source code and build it myself. Where could I get it? ...

How to shutdown the UDC (usage data collection) from eclipse

I want to shutdown the UDC. It's very heavy for my pc. I already uncheck the "Enable Capture" checkbox but I have the feeling that it stay enable in the background. It constantly ask me the user and password of the proxy. I do not want an eclipse always trying to connect to internet and doing background procesing that I don't need. ...

Question about Java Eclipse Export function

I'm trying out the Eclipse Java 'Export Runnable JAR file". It creates a single JAR with all files in it, which is great. But one issue, in my project I have two directories and a few external libraries, like the following layout src resources mypic.jpg JRE System Library Referenced Libraries a bunch of external libraries ...

Eclipse WebLogic Plugin problem - can't start WebLogic server

Hi, I am running Eclipse v3.4.1 with weblogic plugin (Oracle Server Tools v1.2.0.200907171310). I am running Oracle Weblogic 10gR3 locally. On the server tab within Eclipse, I click the Start Server button but receive the following error message: 'startWebLogic.cmd' is not recognized as an internal or external command, operable progra...

Eclipse (Galileo) : How to ignore .svn-base files or *.svn folder in Open Resource dialog ?

I am using TortoiseSVN client. I do not want to see SVN client files in Open resource dialog window. Is there any way to ignore particular folder name or file name ? I have checked following links, There are suggesting to create working set.I am not happy with that because, i have browse down to each package and select the required res...

Default class naming customization in Eclipse using CDT

When I try to create a new class in Eclipse using the CDT plugin I enter in the name of the class. For example MyClass. This generates the default file names MyClass.h and MyClass.cpp. I want to change the default file naming to be of the form my_class.h and my_class.cc. Can this modification be made and if so can it be done from wit...

g++ not working on Windows command prompt

Hello, I try to use Eclipse as an IDE for C programming. Hence, I installed cygwin successfully thereby getting gcc,gdb, and make tools. I'm able to execute C programs on cygwin, however I can't do that on Command prompt. I know, there must be a problem related to Path. But I added C:\Cygwin\bin;C:\Cygwin\usr\bin to the path. I double-c...

Eclipse behavior in Netbeans

I love Netbeans but there is one thing I really like about Eclipse that I can't do in Netbeans: If I have started a function that takes a string i.e. someFunction("Some string here") Both netbeans and eclipse will autocomplete the ending doublequote and parens. In Eclipse, if I hit enter at the end of my string, the cursor will move...