use of com.intellij.openapi.updateSettings.impl.PluginDownloader in project intellij-community by JetBrains.
the class PluginsAdvertiserDialog method createCenterPanel.
@Nullable
@Override
protected JComponent createCenterPanel() {
final DetectedPluginsPanel foundPluginsPanel = new DetectedPluginsPanel() {
@Override
protected Set<String> getSkippedPlugins() {
return mySkippedPlugins;
}
};
for (PluginDownloader uploadedPlugin : myUploadedPlugins) {
foundPluginsPanel.add(uploadedPlugin);
}
TableUtil.ensureSelectionExists(foundPluginsPanel.getEntryTable());
return foundPluginsPanel;
}
Aggregations