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...
Hi all,
I insert wrong package in java file. Eclipse have notified Error format.
How to avoid these notifications?
...
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 ...
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...
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!
...
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()
{
...
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...
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...
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...
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...
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...
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.
...
Is it possible to have an SWT tree with lines of different height ?
Manuel
...
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
...
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.......
...
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...
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?
...
Is it possible to create a user interface with java and eclipse using a xml file?
As in android
Thx
...
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...
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...