void renderDone( RefreshComposite composite ) {
RefreshAdapter adapter = composite.getAdapter( RefreshAdapter.class );
boolean isDone = adapter.isDone();
if( WidgetLCAUtil.hasChanged( composite, PROPERTY_DONE, Boolean.valueOf( isDone ) ) ) {
RemoteObject remoteObject = RemoteObjectFactory.getRemoteObject( composite );
remoteObject.call( METHOD_DONE, null );
adapter.setDone( false );
}
}
void renderListenToRefresh( RefreshComposite composite ) {