Hello world!

flashplayer Welcome to EventDispatcher.fr. This is the first post.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package app.event
{
	import flash.events.Event;
 
	/**
	 * ...
	 * @author Germain Lecourtois
	 */
	public class BlogEvent extends Event
	{
 
		public static var POST_LOAD:String = "PostLoad";
 
 
		public function BlogEvent (type:String, bubbles:Boolean=false, cancelable:Boolean=false) {
			super(type, bubbles, cancelable);
 
		} 
 
		public override function clone():Event
		{
			return new BlogEvent (type, bubbles, cancelable);
		}
		/**
		 *
		 * @return
		 */
		public override function toString():String
		{
			//Format the event
			return formatToString("BlogEvent ", "type", "bubbles", "cancelable", "eventPhase");
		}
 
	}
 
}

:p

Germain LECOURTOIS

Share and Enjoy:
  • Google Bookmarks
  • Twitter
  • Facebook
  • LinkedIn
  • RSS
  • Netvibes
  • viadeo FR
  • del.icio.us
  • Tumblr
  • Digg
  • email

One Response to “Hello world!”

Leave a Reply