use of com.microsoft.azuretools.azureexplorer.editors.rediscache.RedisExplorerEditorInput in project azure-tools-for-java by Microsoft.
the class UIHelperImpl method openRedisExplorer.
@Override
public void openRedisExplorer(@NotNull RedisCacheNode node) {
IWorkbench workbench = PlatformUI.getWorkbench();
RedisExplorerEditorInput input = new RedisExplorerEditorInput(node.getSubscriptionId(), node.getResourceId(), node.getName());
IEditorDescriptor descriptor = workbench.getEditorRegistry().findEditor(RedisExplorerEditor.ID);
openEditor(EditorType.REDIS_EXPLORER, input, descriptor);
}
Aggregations