package org.rsos.openbill.event { import com.adobe.cairngorm.control.CairngormEvent; import flash.events.Event; import org.rsos.openbill.vo.ProductVO; public class ProductEvent extends CairngormEvent { public static var EVENT_PRODUCT : String = "Product"; public var productVO:ProductVO; public var action:String = "GET"; public function ProductEvent() { super(EVENT_PRODUCT); } /** * Override the inherited clone() method, but don't return any state. */ override public function clone() : Event { return new ProductEvent(); } } }