You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to do something very specific and I just didn't found out a solution to this.
Suppose I have these two classes:
/** * Class 1 */classSuperClass
{
/** * My Method * @myAnnotation */publicfunctionmyMethod()
{
}
}
/** * Class 2 */classOddClassextendsSuperClass
{
/** * Overriden Method with no annotations */publicfunctionmyMethod()
{
//I don't want myAnnotation() to be executed! >:(
}
}
So that's it. I have a "SuperClass" with a method that needs an annotation to be executed ever. But there is an "OddClass" that doesn't want that annotation to be executed in the overrided method.
Is this possible? How can I do that without changing all my logic?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hello community,
I need to do something very specific and I just didn't found out a solution to this.
Suppose I have these two classes:
So that's it. I have a "SuperClass" with a method that needs an annotation to be executed ever. But there is an "OddClass" that doesn't want that annotation to be executed in the overrided method.
Is this possible? How can I do that without changing all my logic?
Thanks in advance!
The text was updated successfully, but these errors were encountered: