eclipse

Eclipse: How to prevent an entire rebuild of a project after changing classpath

Is there away to prevent eclipse from rebuilding the entire project every time I change an entry in the class path. Unfortunately, I have to play around with the build path often and rebuilding the projects takes a long time (easily 20-30 mins). Is there away to avoid this? ...

Help setting up Java VM size

Well I am very new to Java and can't understand how am I supposed to set the virtual machine's size. I've built a small web applet that displays images. Sometimes the images can be pretty large, when this happens I get: *Exception in thread "Image Fetcher 0" java.lang.OutOfMemoryError: Java heap space* I've been trying to follow diffe...

EMF ecore and xsd out of sync, how to resolve ?

Hi there, My application is using a model base on an xsd that have been converted to an ecore before generation of the java classes. One of my team member modified the .ecore metamodel in a previous version ,one attribute that used to be generated. He modified the attribute name but not the Extended MetaData specifying the element name ...

accessing to image in eclipse plugin

I'm trying to set the background image of canvas using canvas.setBackgroundImage(image); How can i set the image with a *.png file that is stored in plugin's image sub-directory ? Something like this: PlatformUI.getWorkbench().getSharedImages().getImage(ISharedImages.IMG_OBJS_INFO_TSK) but I want to use my image file instead of t...

Eclipse spell checker - How do I remove a word I added?

I accidentally added a word I'm forever mis-spelling into Eclipse's spell-checker dictionary. How do I get it back out again? ...

Eclipse: Improve debugging and display vairable values on mouseOver

Is it possible to view variable values in Eclipse when debugging? Right now when I "mouse over" a variable all I get is the definition. e.g. for [int mLastView] I get [com.company.samples.MyClass.mLastView] instead of [1]. The value that was assigned to it. Also, is there anyway to improve debugging in Eclipse? For starter: making th...

Problem launching Flex Builder 3.x

I have been using Flex Builder for while, then this just happen, and now it would not launch again. !SESSION 2009-09-01 11:24:33.517 ----------------------------------------------- eclipse.buildId=unknown java.version=1.5.0_11 java.vendor=Sun Microsystems Inc. BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US Command-line arg...

Coherent access to mainframe files from Win32 application and IBM RDZ/Eclipse?

I have a suite of tools for processing IBM COBOL source code; these tools are built as Win32 applications and talk to Windows (including network) files using traditional Windows file system calls (open, close, read, write) and work just fine, thank you. I'd like to integrate these with Eclipse; we understand how to get Eclipse to do UI ...

Own Exception Handling with BIRT RCP Designer...

Hello! Is it possible to implement own exception handling for exceptions that are thrown when the report is generated? I want to supress the printing of error messages at the end of the report and instead show an alternate text at the section of the report which has caused the exception. Thanks (Using the RCP - Designer V. 2.1.3) ...

which eclipse project/workspace files should be added to source control?

I want to share an eclipse project with the rest of my team through SVN. Which files should I add to subversion? In the workspace, there are many files which IMHO are not supposed to be on source control - they are a few megabytes in size. When adding just the project, another user who checks out the code still has to import the project...

Build multiple project configurations with eclipse

Is there a way to make Eclipse able to export multiple configurations of a single project? My problem is the following: I have several java web applications which I develop in Eclipse. Before I put new versions onto my production server I publish the new versions to a test server, where the apps run with a slightly different configura...

Eclipse Java Content Assist not working

The Content Assist in Eclipse 3.4 and 3.5 has stopped working for me. When I type in the first few characters of a class and hit CRTL-space then after a delay I get the following error message It does not matter what proposals I enable/disable, I will get this (or similar) message. I have tried: Changing the Xms/Xmx values Starting ...

How do I deal with a ClassNotLoadedException while debugging?

So I'm (remotely) debugging some a java/jboss application in Eclipse, stepping through line by line. At one point, an array of GridSquare objects (GridSquare is a fairly simple, standalone class, contains a few properties and methods) is created by a method call, i.e: GridSquare[] squares = this.theGrid.getSquares(14, 18, 220, 222); ....

eclipse tomcat debug mode slow - pegs cpu

Running Tomcat through eclipse works fine in non-debug mode, but not in debug mode. When I try to start the Tomcat server in debug mode, the console output looks fine for a while, but then starts slowing down and eventually just stops, pegging the cpu at 100%. I don't think it's relevant, but just in case - here's the console output ri...

Eclipse fails to start via an application launcher

Hi everybody. The problem: elcipse-3.5.0 (Galileo) spits with an error when I try to launch it by clicking its launcher. The curse sound like this: A Java Runtime Environment (JRE) or Java Development Kit (JDK) must be available in order to run Eclipse. No Java virtual machine was found after searching the following location...

EMF (Eclipse Modeling Framework) in C#

Hi, I worked with Eclipse EMF in the past Now I am working in C# to create a tool that needs extensive modeling to capture its metadata, logic, persistance etc. What is the equivalent in C#? The idea in EMF is that you define your model in UML, then generate the code. The generated code knows how to persist/load itself, expose its met...

coldfusion builder rds fails dreamweaver cs4 rds works

I am currently attempting use Adobe RDS built into Coldfusion Builder to connect to our servers RDS setup, no matter how I set it up to match Dreamweaver CS4 RDS it fails. Everything through Dreamweaver RDS works fine, but I would rather use cf builder, any ideas or links? ...

Eclipse - debugger doesn't stop at breakpoint

I am trying to trouble shoot a JUnit. In the source code, I have set break point in two places: 1) in a line where a static member is initialized 2) the first line of one of the test cases. The debugger stops in the static field initializing line. But it doesn't stop in the test case. No matter where I set the break point in the test ca...

Downloading Eclipse plug-in update sites for offline installation

A plug-in that I want to install provides an update site for installation. However, the Eclipse installation that I want to install it to is on a machine that is not connected to the Internet. Is there a way for me to access the site (HTTP, FTP, etc.) to download the files in it for offline installation? ...

Eclipse RCP: How to access internal classes of plugins?

I want to use the default XML editor (org.eclipse.wst.xml.ui) of Eclipse in an RCP application. I need to read the DOM of the xml file currently open. The plugin doesn't offer any extension point, so I'm trying to access the internal classes. I am aware that the I should not access the internal classes, but I don't have another option. ...