FrameControllers having a table component should implement
this interface.
The reason for this interface are simple. We have many kinds of
frame controllers. Some have a table component, some of them don't.
To recognize we can just test it:
if ( frameMediator instanceof TableOwner )
{
TableController table = ( (TableOwner) frameMediator).getTableController()
// do something here
}
author: fdietz |