Extends an interface : interface « Class « Flash / Flex / ActionScript






Extends an interface

 

interface ISender {
  public function send():void;
}

interface IMessageSender extends ISender {
  public function setMessage(msObject:Message):void;
}

        








Related examples in the same category

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