Sha256: a8773f61ae7d128be00d05a1262d7f5e973ac3dabcb39272e952c40673f29686
Contents?: true
Size: 695 Bytes
Versions: 10
Compression:
Stored size: 695 Bytes
Contents
package <%= class_name.downcase.gsub('::','.') %>.control { import flash.events.Event; import mx.utils.ObjectUtil; import com.adobe.cairngorm.control.CairngormEvent; public class <%= actions.first.camelcase %>Event extends CairngormEvent { public static var EVENT_<%= actions.first.underscore.upcase %> : String = "<%= actions.first.camelcase %>"; public function <%= actions.first.camelcase %>Event() { super(EVENT_<%= actions.first.underscore.upcase %>); } /** * Override the inherited clone() method, but don't return any state. */ override public function clone() : Event { return new <%= actions.first.camelcase %>Event(); } } }
Version data entries
10 entries across 5 versions & 2 rubygems