To prevent a class from being extended or a method from being overridden, we precede that class or method definition with the final attribute.
How it works?
To Final a class:
final public class A{
}
To Final a method:
public class A{
final public function A{
}
}
The final attribute is used for two reasons in ActionScript:
