Creating Interfaces : interface « Class « Flash / Flex / ActionScript






Creating Interfaces

 

interface InterfaceName {
  // Interface code goes here.
}


interface IMessageSender {
  private var _msToSend:Message;  // Incorrect.
}

        








Related examples in the same category

1.Interface Syntax and Use
2.Extends an interface
3.Interface Inheritance
4.Implementing an Interface
5.Implement an Interface
6.Implement interface
7.Implement two interface