Nov 25, 2005 #1 keizersoz Programmer Apr 22, 2004 67 BE What does following warning means? "The serializable class ButtonTest does not declare a static final serialVersionUID field of type long" thanks
What does following warning means? "The serializable class ButtonTest does not declare a static final serialVersionUID field of type long" thanks
Nov 25, 2005 1 #2 Diancecht Programmer Jan 8, 2004 4,042 ES Exactly that: your ButtonTest class implements java.io.Serializable, that implies the class needs a long field serialVersionUID. Cheers, Dian Upvote 0 Downvote
Exactly that: your ButtonTest class implements java.io.Serializable, that implies the class needs a long field serialVersionUID. Cheers, Dian
Nov 25, 2005 Thread starter #3 keizersoz Programmer Apr 22, 2004 67 BE How do I do that? I don't have a clue what serialVersionUID means! thanks, Upvote 0 Downvote
Nov 25, 2005 #4 Diancecht Programmer Jan 8, 2004 4,042 ES Neithe do I, to be sincere, I'd just declare a random big number. http://www.javapractices.com/Topic45.cjp Cheers, Dian Upvote 0 Downvote
Neithe do I, to be sincere, I'd just declare a random big number. http://www.javapractices.com/Topic45.cjp Cheers, Dian