I'm using Eclipse to create a simple project. I'm trying to implement Serializable in my Java class, but Eclipse is not recognizing it saying "Serializable cannot be resolved to a type" and offering me to create an inteface called Serializable.
public class Location implements Serializable {
Isn't Serializable supposed to be a built in interface? How do I get it to work?