package events
{
import dto.RegistrationDTO;
import flash.events.Event;
public class RegistrationEvent extends Event
{
public static const REGISTER_EVENT:String ="register_event";
public var data:RegistrationDTO;
public function
RegistrationEvent(data:RegistrationDTO,type:String)
{
super(type);
this.data=data;
}
Override public function clone():Event
{
the line below errors 1084: expecting rightparen before colon//
return new
RegistrationEvent(data:RegistrationDTO,type:String);
}
}
}
--
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en.