Interface to be implemented by RenderKits that support the launching of dialogs. The {@link org.apache.myfaces.trinidad.component.UIXCommand UIXCommand} componentswill not support launching dialogs unless the render kit provides an implementation of this API. Developers should always retrieve an instance using {@link org.apache.myfaces.trinidad.util.Service#getService}, passing in the current RenderKit.
RenderKit rk = facesContext.getRenderKit(); DialogService service = (DialogRenderKitService) Service.getService(rk, DialogRenderKitService.class);
@author The Oracle ADF Faces Team