The Easiest Way to Save and Share Code Snippets on the web

Interface with Signals

actionscript3 | by: diegoxleon

last edit: Apr, 14th 2010 | jump to bottom

/** @author xleon */
 
package quicker.core.api
{
	import org.osflash.signals.Signal;
 
	public interface IVisible
	{
		function Show():void;
		function Hide():void;
		function Draw():void;
		function Clean():void;
 
		function get shown():Signal;
		function get hidden():Signal;
		function get drawn():Signal;
		function get cleaned():Signal;
		function get id():String;
		function set id(value:String):void;
	}
}
1576 views