Search in sources :

Example 1 with RemoteDebuggingClientDialog

use of com.microsoft.azuretools.ijidea.ui.RemoteDebuggingClientDialog in project azure-tools-for-java by Microsoft.

the class RemoteDebugAction method actionPerformed.

@Override
public void actionPerformed(NodeActionEvent e) {
    WebApp webApp = webappNode.getWebApp();
    try {
        // TODO
        RemoteDebuggingClientDialog d = new RemoteDebuggingClientDialog((Project) webappNode.getProject(), webApp);
        d.show();
    } catch (Exception ex) {
        PluginUtil.displayErrorDialogAndLog(message("error"), message("error"), ex);
    }
}
Also used : RemoteDebuggingClientDialog(com.microsoft.azuretools.ijidea.ui.RemoteDebuggingClientDialog) WebApp(com.microsoft.azure.management.appservice.WebApp)

Aggregations

WebApp (com.microsoft.azure.management.appservice.WebApp)1 RemoteDebuggingClientDialog (com.microsoft.azuretools.ijidea.ui.RemoteDebuggingClientDialog)1