I'll start with a piece of code
class Clazz { public void doSomething() { ... check(); } public void doSomethingElse() { ... check(); } ...
Is it possible to comment on methods like @Checked
that will invoke check()
at the end? And if so, can you give some examples?
source share