I'm not quite sure what your asking. It's a feature of the Serializable interface, I think combined with Eclipse's code style options (or whatever IDE you're using), that generates this warning. If you check under code style options (which generally give you a number of warning you an turn on, so the IDE can help you keep your code clean), I think you'll find the option that generates this warning.
The purpose of the warning, in case you're wondering, is that the serialVersionUID is used to uniquely identify a serialized object. When your code tries to de-serialize that object (say, from a file), if you're using the standard serialization techniques in Java, the JVM will throw an error when the serialVerionUID for the class you're trying to de-serialize, doesn't match the one in the complied class file. It one way of the JVM loading a serialized object that contains a previous/alternate version of the given object/data structure.