I recently moved from NetBeans to Eclipse and I very much miss one great feature - whenever I use method which throws some kind of exception, NetBeans alerted me and I needed to add try-catch and NetBeans automatically generated exception type for me. Is there something similiar for Eclipse?
f.e. : Integer.parseInt(new String("foo")); ...
I wrote my Java application in Eclipse. Now I would like to generate a .jar file which can be run on other systems from the command line. Is there a easy way to do it in Eclipse?
In particular I am wondering what should I do with the jar files of external library that I use (should it be included into my .jar file?).
Moreover, should I...
I have set up Eclipse PDT on Galileo. I'm able to run and debug PHP sites that are set up on XAMPP. The thing is, I want to profile one of the sites, but cannot for the life of me figure out how to set this up. There is a profiling menu when I right-click the PHP project, but no indication of how to proceed from there. BTW I'm using Xdeb...
What is the difference between Java Build Path - Add External JARs Button and Add Variable Button Functionality,
Why its required. Please explain in detail.
...
I am new to JBoss DS and I could not figur out is how to make a folder from my project deployable, exploded SAR in my case.
If I create a new server in the JBoss server view / JBoss AS perspective and select a SAR and make it a deployable then the SAR file can be deployed on the JBoss server.
Another approch that I have tryed is to ma...
I installed EPIC, but I cannot see the line number even I enable line number, any idea?
...
I have an Eclipse plugin which includes a view. The view has several icons in the toolbar. I'm experiencing a very strange problem: on Windows, in some occasions (after prolonged use), one of the icons gets slightly erased. This does not happen on other platforms.
This looks like a memory leak or some other resource misuse, but I just ...
where can I set that the tree in the explorer in eclipse when opened is expanded exactly as it was before last exit?
...
Currrently, all the topics that are listed in http://help.eclipse.org/galileo/index.jsp are not installed on my machine. I understand that help is only installed for the plugins that are installed already. However, I see that PDE(Plugin Development) API reference is not installed on my local eclipse, though a overview of PDE is.
Basica...
We have an application in which some views only work when attached to certain perspectives.
We want to remove those views from the Window -> Show View dialog so that users cannot add them to perspectives where they don't work.
Any ideas on how to do this either programmatically or declaratively?
I have tried using <visibleWhen />, but...
I found this python plugin list but thought I'd ask if anyone has any experience with anything listed there?
I'm totally new to both python and dynamic programming languages if that makes any difference.
...
Hello,
I am having some problems trying to work with PostgreSQL and Hibernate, more specifically, the issue mentioned in the title. I've been searching the net for a few hours now but none of the found solutions worked for me.
I am using Eclipse Java EE IDE for Web Developers. Build id: 20090920-1017 with HibernateTools, Hibernate 3, ...
I have just installed the Blackberry Widget Packager and Blackberry Web Plug-In for Eclipse, and everything works fine, but my files are output to strange places.
For example, I tried putting my zipped source files in the folder Blackberry Widget Packager/web and I got an error during packaging. Packaging works when the .zip is in th...
As far as i can see, i have the option of creating web services and WSDL file in Galileo.
Also, Looking here there is the Eclipse WSDL viewer : http://wiki.eclipse.org/index.php/Introduction_to_the_WSDL_Editor
How can i open a WSDL file in Eclipse ? If i just browse and open the file, nothing happens.
Someone please help, this is real...
hi,
I want to replace all whitespace characters in a string with a "+" and all "ß" with "ss"... it works well for "ß", but somehow eclipse won't let me use \s for a whitespace.. I tried "\t" instead, but it doesn't work either.. I get the following error:
Invalid escape sequence (valid ones
are \b \t \n \f \r \" \' \ )
this is my...
Hi
I was following the method for asynchronously loading images into a listview as outlined in evan charlton's blog here. The problem I am having is that the setViewImage function is not being called by the system:
@Override
public void setViewImage(final ImageView image, final String value) {
if (value != null && value.length() > ...
I have a thumb drive (memory stick, flash drive, etc.) on which I use for my projects when I am away from my home PC. Currently I am accessing my Eclipse project directly from my thumb drive when connected to my PC.
I would like to copy my files to the PC, develop on the PC, then "synchronize" with the thumb drive (update files on th...
I have a View which extends a View provided by another plugin like this:
public class View2 extends some.other.package.View1
{
public void createPartControl(Composite parent)
{
super.createPartControl(parent);
//I want to do this, but I can't because its private
//getSite().setSelectionProvider(tre...
I've got 10+ years in C/C++, and it appears Visual Studio has spoilt me during that time. In Visual Studio, debbuging issimple: I just add a breakpoint to a line of code, and as soon as that code is executed, my breakpoint triggers, at which point I can view a callstack, local/member variables, etc.
I'm trying to achieve this functiona...
Hi,
I am using a Derby local (embedded) database for one of my RCP projects. The database is located within the project folder structure in eclipse and is checked to be included in the build.
My folder structure in Eclipse is:
projectname
I
I- src
I
I- database
I I
I I-project database here
I
I
I- icons
...
The Eclipse...