Example usage for com.intellij.openapi.ui TitlePanel TitlePanel

List of usage examples for com.intellij.openapi.ui TitlePanel TitlePanel

Introduction

In this page you can find the example usage for com.intellij.openapi.ui TitlePanel TitlePanel.

Prototype

public TitlePanel(String title, String description) 

Source Link

Usage

From source file:com.microsoft.intellij.ui.AddApplicationDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("appDlgTxt"), message("appDlgMsg"));
}

From source file:com.microsoft.intellij.ui.ApplicationInsightsAddDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("addKeyTtl"), message("addKeyMsg"));
}

From source file:com.microsoft.intellij.ui.ApplicationInsightsNewDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("newKeyTtl"), message("newKeyMsg"));
}

From source file:com.microsoft.intellij.ui.azureroles.CacheDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("cachTxt"), message("cachMsg"));
}

From source file:com.microsoft.intellij.ui.azureroles.CertificateDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("certAddTtl"), message("certMsg"));
}

From source file:com.microsoft.intellij.ui.azureroles.ImportExportDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("dlgImpTtl"), message("dlgImpMsg"));
}

From source file:com.microsoft.intellij.ui.azureroles.LocalStorageResourceDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("lclStrTxt"), message("lclStrMsg"));
}

From source file:com.microsoft.intellij.ui.DeployWizardDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("deplWizTitle"), "");
}

From source file:com.microsoft.intellij.ui.EditStorageAccountDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("strTxt"), message("strNmMsg"));
}

From source file:com.microsoft.intellij.ui.NewCertificateDialog.java

License:Open Source License

protected JComponent createTitlePane() {
    return new TitlePanel(message("newCertDlgCertTxt"), message("newCertDlgCertMsg"));
}