Compile error for EventObject
import java.util.EventObject;
publicclass DataEventextends EventObject{
public DataEvent(){}
}
when i compile, it gives error like the following:
Eventobject(java.lang.object) in java.util.Eventobject can not be applied to ()
could anybody help me please?
Tanx

