use of org.eclipse.ecf.remoteserviceadmin.ui.endpoint.EndpointDiscoveryView in project ecf by eclipse.
the class DiscoveryComponent method endpointChanged.
@Override
public void endpointChanged(EndpointEvent event, String filter) {
EndpointDiscoveryView view = null;
List<EndpointEvent> h = null;
synchronized (this) {
h = history;
view = discoveryView;
}
if (view != null)
view.handleEndpointChanged(event);
else if (h != null)
h.add(event);
}
Aggregations