Interface BrowserResponseListener
-
public interface BrowserResponseListenerA listener notified of OSLC responses raised by an OSLC delegated user interface displayed in a browser.- Since:
- 1.1.0
- See Also:
Browsers.addResponseListener(org.eclipse.swt.browser.Browser, BrowserResponseListener)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidresponseCancel()Notification sent when the user cancelled the resource selection within the OSLC delegated user interface.voidresponseOK(List<Link> selectedResources)Notification sent when a resource selection is made in an OSLC delegated user interface.
-
-
-
Method Detail
-
responseOK
void responseOK(List<Link> selectedResources)
Notification sent when a resource selection is made in an OSLC delegated user interface. This should typically involve closing the owning dialog.- Parameters:
selectedResources- the resources selected within the OSLC delegated user interface.
-
responseCancel
void responseCancel()
Notification sent when the user cancelled the resource selection within the OSLC delegated user interface. This should typically involve closing the owning dialog.
-
-