Preventing Inheritance by using final keyword : final « Class « Flash / Flex / ActionScript






Preventing Inheritance by using final keyword

 
     
package
{
    public final class Encrypter
    {
        public function encrypt(sourceText:String, key:String):String
        {
        }
    }
}
 

        








Related examples in the same category

1.Preventing Classes from Being Extended and Methods from Being Overridden
2.Class with final method