eclipse

JSP:include is not rendering the included file

I just created a new IceFaces application and I'm trying to include a navigation bar in all of the pages. When I use the jsp:directive.include tag the file is included, but when I use jsp:include it does not seem to be loaded. In fact, when I check the HTML source code in my browser, it's like the included file was completely empty. I do...

Eclipse -- Avoid package related notification

Hi all, I insert wrong package in java file. Eclipse have notified Error format. How to avoid these notifications? ...

How do I design "manual animation" into an Android game without code delays

I am writing a game for Android and I think I have a fatal flaw in my architecture and/or code. The architecture is basically two threads, one that just continuously draws the screen and the other than controls the movement of the drawables on the screen based on the user's touch screen input. In the latter thread, I'm basically doing ...

equals() generated by Eclipse: getOuterType()?

I have simple class Point with two fields of type double. I asked Eclipse 3.6 to generate equals() and hashCode() for it. The equals() method looks like this: @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) re...

How do I edit/undo/remove an entry from .svnignore in Eclipse?

This seems like a simple problem, but I can't figure out how to edit the svn-ignore list from Eclipse. Strangely I couldn't find how to do so on a web search or on stackoverflow. Thanks! ...

java: NullPointerException, need help

package pkgPeople; import java.io.Serializable; import java.text.DecimalFormat; public class Person implements Serializable{ private String name; private int height; private int weight; private BankAccount bankAccount; private static int personCT=0; private String noAccount; //The Default constructor, a method public Person() { ...

Is there a way to integrate WebSVN RSS into eclipse

I'm using WebSvn on top of my SVN repository. WebSvn supports RSS notification (on directory level) for changes made in the repository. Is there an eclipse plug-in that checks WEbSVN RSS and notifies whenever someone commits and changes the code in the SVN repository. I'm looking for a nice integration within the eclipse package viewer...

Windows 7 64-bit Eclipse debug on DroidX over USB

I am running Windows 7 64-bit with Eclipse and Android. The SDKs are installed and it runs very well with the emulator interacting with the PC screen and keyboard. I would likre tp test on my real phone (DroidX). When I install the DroidX on the USB cable Windows 7 immediatly tells me I loaded a removable disk on Drive N. How do I es...

Weird output during JVM application execution in Eclipse - how to debug?

Hi, I've encountered weird Eclipse console output during my application execution. I'm almost 100% sure that it's my application's fault, but I couldn't find any information on how such output should be interpreted. After printing those characters, Eclipse freezes. Screenshot here My bet is problem with thread synchronisation, but how...

Maven continuously building EAR module for JEE project

I have a maven JEE project built using javaee5-maven-archetype and imported into Eclipse(Helios). The EAR module of the project is continuolsy build every second, even when there are no changes. Sometime Eclipse freezes and i have to kill the process. Nothing is listed in the Problems view but the below is displayed continuosly on the Ma...

Why i cannot see the icons from a metamodel instance at eclipse with GEMS

I have created an eclipse plugin for my metamodel throught the emf+gmf = gems eclipse framework.When i am testing the metamodel and what i mean is to create an instance of my model with eclipse palette etc everything works fine.The way that i am testing it is throught the "Overview" tab of the plugig.xml file (PDE) , i clicked on "launch...

How can I change the button that is in the view.

I have a toggle button that is on the Viewer![alt text][1] the problem is , when it turn on , How can recover the last status . like even though the default value is false , how to set it true programmatically. In the plugin.xml , the default status is true. ...

SWT Tree Item Height

Is it possible to have an SWT tree with lines of different height ? Manuel ...

How to revert a software update in Eclipse

I think of of the last update of an Eclipse plugin is causing errors, how can I revert to the version previous to the latest update ? (the plugin is PHPsrc : http://www.phpsrc.org/) Thanks ...

jco initialization error in eclipse

im trying to retrieve data from SAP and it goes to a blank page showing the below exception when i run my application when the complier reads the below line JCO.Table table = new JCO.Table() it shows the exception as java.lang.NoClassDefFoundError: com/sap/mw/jco/JCO$Table can someone help me out on this........pls....... ...

Problem debugging web application deployed on Weblogic.

I have a problem debugging web application deployed on Weblogic v 9.2 application server. Debugging environment is the following: Eclipse Europa Oracle Enterprise Pack for Eclipse When I run application set by step, if I click F6 (Step over) - everything is Ok. But, when I click F5 (Step into) - debugging hangs, in Debug window, thr...

How to automatically return to Flash perspective after debugging in Flash Builder 4

Flash Builder 4 knows how to automatically switch on the Debug perspective when the user starts debugging, but when the debugging session is over (e.g. terminated) it remains in the debug perspective. Can it be configured to automatically return to the development perspective when the debugger is detached / process is terminated? ...

GUI with xml in java

Is it possible to create a user interface with java and eclipse using a xml file? As in android Thx ...

Javadoc Ant OutofMemoryError

When creating an ant build script to generate Javadoc, Eclipse is receiving an OutOfMemoryError. The ant build has the -Xmx512m and -Xms512m settings under the JRE tab in the run configuration. This works great for compiling the application. The only trouble is with the Javadoc portion of the build. Here is the build.xml file <target na...

where does the SWT PaintEvent come from and how to influence it

I am trying to draw and animate with SWT using PaintListeners. I would like to influence the timing of the animation, so I have looked far and wide but could not found anything explaining where and how the PaintEvents are generated and how to influence that, e.g enforcing a framerate or sending the PaintEvent only to cetrain Widgets. So...