Converting an existing XCode project to WOLips

Version 4.1 by David Holt on 2006/08/16 16:51

Starting with a brand new installation of Eclipse and making a new WOLips project will immediately give you the following warnings in the lower central pane:

Severity and Description Path Resource Location Creation Time Id
The serializable class Main does not declare a static final serialVersionUID field of type long WOnderTest/src Main.java line 5 1155760412072 1

Severity and Description Path Resource Location Creation Time Id
The serializable class Session does not declare a static final serialVersionUID field of type long WOnderTest/src Session.java line 5 1155760412016 0

Chuck Hill provided the following solution:

"That is not an error, that is a warning.  You can safely ignore it.
To make it go away:

Window - Preferences - Java - Compiler - Errors/Warnings - Potential
Programming Problems and see the top entry."

You'll have to do a rebuild after selecting to ignore "Serializable class wtihout serialVersionUID:"

Voila, no more warnings.