Guest User

Untitled

a guest
Dec 7th, 2010
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package com.rodrigoelesbao.passo.event
  2. {
  3.     import com.rodrigoelesbao.passo.vo.PassoVo;
  4.    
  5.     import flash.events.Event;
  6.    
  7.     public class AtualizarPassoEvent extends Event
  8.     {
  9.         /**
  10.          *  Types */
  11.         public static const ATUALIZAR:String = "AtualizarPassoEvent_ATUALIZAR";
  12.         public static const EXCLUIR:String = "AtualizarPassoEvent_EXCLUIR";
  13.        
  14.         /**
  15.          * Values */
  16.         public var passoVo:PassoVo;
  17.        
  18.         public function AtualizarPassoEvent(type:String, bubbles:Boolean=true, cancelable:Boolean=false)
  19.         {
  20.             super(type, bubbles, cancelable);
  21.         }
  22.        
  23.         override public function clone():Event
  24.         {
  25.             return new AtualizarPassoEvent(type, bubbles, cancelable);
  26.         }
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment