Added getter to expose nested callback to subclasses.

This commit is contained in:
Simone Bordet 2017-04-03 19:34:31 +02:00
parent 7547fc4b29
commit 1d9f9e86c0
1 changed files with 5 additions and 0 deletions

View File

@ -119,6 +119,11 @@ public interface Callback extends Invocable
this.callback = nested.callback;
}
public Callback getCallback()
{
return callback;
}
@Override
public void succeeded()
{