Well, all your fields in BasicEvent are static, so they belong to the class, not to objects. That means they are the same for all objects. Every time you create an object, you write on these fields.
Please look at your Java documention on the signification of static fields and how to use them.