use of com.microsoft.azuretools.azureexplorer.forms.createvm.CreateVMWizard in project azure-tools-for-java by Microsoft.
the class CreateArmVMAction method actionPerformed.
@Override
public void actionPerformed(NodeActionEvent e) {
if (!SignInCommandHandler.doSignIn(PluginUtil.getParentShell()))
return;
CreateVMWizard createVMWizard = new CreateVMWizard((VMArmModule) e.getAction().getNode());
WizardDialog dialog = new AzureWizardDialog(PluginUtil.getParentShell(), createVMWizard);
dialog.setTitle("Create new Virtual Machine");
// dialog.setPageSize(400, 500);
dialog.create();
dialog.open();
}
Aggregations